IBM Data science Proffessional Certificate: Battle of the Neighborhoods in New York City

Introduction

In this Notebook,we analyse newyork neibourhoods . Also, will use the Foursquare API to explore neighborhoods in New York City. Additionaly will also use the explore function to get the most common venue categories in each neighborhood, and then use this feature to group the neighborhoods into clusters. Then use the k-means clustering algorithm to complete this task. Finally, will use the Folium library to visualize the neighborhoods in New York City and their emerging clusters.

Before we get the data and start exploring it, let's download all the dependencies that we will need.

In [1]:
import numpy as np # library to handle data in a vectorized manner

import pandas as pd # library for data analsysis
pd.set_option('display.max_columns', None)
pd.set_option('display.max_rows', None)

import json # library to handle JSON files

!conda install -c conda-forge geopy --yes 
from geopy.geocoders import Nominatim # convert an address into latitude and longitude values

import requests # library to handle requests
from pandas.io.json import json_normalize # tranform JSON file into a pandas dataframe

# Matplotlib and associated plotting modules
import matplotlib.cm as cm
import matplotlib.colors as colors

# import k-means from clustering stage
from sklearn.cluster import KMeans

!conda install -c conda-forge folium=0.5.0 --yes 
import folium # map rendering library

print('Libraries imported.')
Solving environment: done

## Package Plan ##

  environment location: /opt/conda/envs/Python36

  added / updated specs: 
    - geopy


The following packages will be downloaded:

    package                    |            build
    ---------------------------|-----------------
    certifi-2019.11.28         |           py36_0         149 KB  conda-forge
    geographiclib-1.50         |             py_0          34 KB  conda-forge
    ca-certificates-2019.11.28 |       hecc5488_0         145 KB  conda-forge
    openssl-1.1.1d             |       h516909a_0         2.1 MB  conda-forge
    geopy-1.20.0               |             py_0          57 KB  conda-forge
    ------------------------------------------------------------
                                           Total:         2.5 MB

The following NEW packages will be INSTALLED:

    geographiclib:   1.50-py_0         conda-forge
    geopy:           1.20.0-py_0       conda-forge

The following packages will be UPDATED:

    ca-certificates: 2019.11.27-0                  --> 2019.11.28-hecc5488_0 conda-forge
    certifi:         2019.11.28-py36_0             --> 2019.11.28-py36_0     conda-forge

The following packages will be DOWNGRADED:

    openssl:         1.1.1d-h7b6447c_3             --> 1.1.1d-h516909a_0     conda-forge


Downloading and Extracting Packages
certifi-2019.11.28   | 149 KB    | ##################################### | 100% 
geographiclib-1.50   | 34 KB     | ##################################### | 100% 
ca-certificates-2019 | 145 KB    | ##################################### | 100% 
openssl-1.1.1d       | 2.1 MB    | ##################################### | 100% 
geopy-1.20.0         | 57 KB     | ##################################### | 100% 
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
Solving environment: done

## Package Plan ##

  environment location: /opt/conda/envs/Python36

  added / updated specs: 
    - folium=0.5.0


The following packages will be downloaded:

    package                    |            build
    ---------------------------|-----------------
    branca-0.3.1               |             py_0          25 KB  conda-forge
    vincent-0.4.4              |             py_1          28 KB  conda-forge
    folium-0.5.0               |             py_0          45 KB  conda-forge
    altair-4.0.0               |             py_0         606 KB  conda-forge
    ------------------------------------------------------------
                                           Total:         704 KB

The following NEW packages will be INSTALLED:

    altair:  4.0.0-py_0 conda-forge
    branca:  0.3.1-py_0 conda-forge
    folium:  0.5.0-py_0 conda-forge
    vincent: 0.4.4-py_1 conda-forge


Downloading and Extracting Packages
branca-0.3.1         | 25 KB     | ##################################### | 100% 
vincent-0.4.4        | 28 KB     | ##################################### | 100% 
folium-0.5.0         | 45 KB     | ##################################### | 100% 
altair-4.0.0         | 606 KB    | ##################################### | 100% 
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
Libraries imported.

1. Downloading and Exploring the Dataset

Best on the data used in this study, the New york Neighborhood has a total of 5 boroughs and 306 neighborhoods. In order to segement the neighborhoods and explore them, we will essentially need a dataset that contains the 5 boroughs and the neighborhoods that exist in each borough as well as the the latitude and logitude coordinates of each neighborhood.

This dataset exists for free on the web. Feel free to try to find this dataset on your own, but here is the link to the dataset: https://geo.nyu.edu/catalog/nyu_2451_34572

In [4]:
!wget -q -O 'newyork_data.json' https://cocl.us/new_york_dataset
print('Data downloaded!')
Data downloaded!

Load and explore the data

now let load the data

In [5]:
import json
with open('newyork_data.json') as json_data:
    newyork_data = json.load(json_data)

we then take a quick look at our data

In [6]:
newyork_data
Out[6]:
{'type': 'FeatureCollection',
 'totalFeatures': 306,
 'features': [{'type': 'Feature',
   'id': 'nyu_2451_34572.1',
   'geometry': {'type': 'Point',
    'coordinates': [-73.84720052054902, 40.89470517661]},
   'geometry_name': 'geom',
   'properties': {'name': 'Wakefield',
    'stacked': 1,
    'annoline1': 'Wakefield',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.84720052054902,
     40.89470517661,
     -73.84720052054902,
     40.89470517661]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.2',
   'geometry': {'type': 'Point',
    'coordinates': [-73.82993910812398, 40.87429419303012]},
   'geometry_name': 'geom',
   'properties': {'name': 'Co-op City',
    'stacked': 2,
    'annoline1': 'Co-op',
    'annoline2': 'City',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.82993910812398,
     40.87429419303012,
     -73.82993910812398,
     40.87429419303012]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.3',
   'geometry': {'type': 'Point',
    'coordinates': [-73.82780644716412, 40.887555677350775]},
   'geometry_name': 'geom',
   'properties': {'name': 'Eastchester',
    'stacked': 1,
    'annoline1': 'Eastchester',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.82780644716412,
     40.887555677350775,
     -73.82780644716412,
     40.887555677350775]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.4',
   'geometry': {'type': 'Point',
    'coordinates': [-73.90564259591682, 40.89543742690383]},
   'geometry_name': 'geom',
   'properties': {'name': 'Fieldston',
    'stacked': 1,
    'annoline1': 'Fieldston',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.90564259591682,
     40.89543742690383,
     -73.90564259591682,
     40.89543742690383]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.5',
   'geometry': {'type': 'Point',
    'coordinates': [-73.9125854610857, 40.890834493891305]},
   'geometry_name': 'geom',
   'properties': {'name': 'Riverdale',
    'stacked': 1,
    'annoline1': 'Riverdale',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.9125854610857,
     40.890834493891305,
     -73.9125854610857,
     40.890834493891305]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.6',
   'geometry': {'type': 'Point',
    'coordinates': [-73.90281798724604, 40.88168737120521]},
   'geometry_name': 'geom',
   'properties': {'name': 'Kingsbridge',
    'stacked': 1,
    'annoline1': 'Kingsbridge',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.90281798724604,
     40.88168737120521,
     -73.90281798724604,
     40.88168737120521]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.7',
   'geometry': {'type': 'Point',
    'coordinates': [-73.91065965862981, 40.87655077879964]},
   'geometry_name': 'geom',
   'properties': {'name': 'Marble Hill',
    'stacked': 2,
    'annoline1': 'Marble',
    'annoline2': 'Hill',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.91065965862981,
     40.87655077879964,
     -73.91065965862981,
     40.87655077879964]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.8',
   'geometry': {'type': 'Point',
    'coordinates': [-73.86731496814176, 40.89827261213805]},
   'geometry_name': 'geom',
   'properties': {'name': 'Woodlawn',
    'stacked': 1,
    'annoline1': 'Woodlawn',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.86731496814176,
     40.89827261213805,
     -73.86731496814176,
     40.89827261213805]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.9',
   'geometry': {'type': 'Point',
    'coordinates': [-73.8793907395681, 40.87722415599446]},
   'geometry_name': 'geom',
   'properties': {'name': 'Norwood',
    'stacked': 1,
    'annoline1': 'Norwood',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.8793907395681,
     40.87722415599446,
     -73.8793907395681,
     40.87722415599446]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.10',
   'geometry': {'type': 'Point',
    'coordinates': [-73.85744642974207, 40.88103887819211]},
   'geometry_name': 'geom',
   'properties': {'name': 'Williamsbridge',
    'stacked': 1,
    'annoline1': 'Williamsbridge',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.85744642974207,
     40.88103887819211,
     -73.85744642974207,
     40.88103887819211]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.11',
   'geometry': {'type': 'Point',
    'coordinates': [-73.83579759808117, 40.866858107252696]},
   'geometry_name': 'geom',
   'properties': {'name': 'Baychester',
    'stacked': 1,
    'annoline1': 'Baychester',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.83579759808117,
     40.866858107252696,
     -73.83579759808117,
     40.866858107252696]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.12',
   'geometry': {'type': 'Point',
    'coordinates': [-73.85475564017999, 40.85741349808865]},
   'geometry_name': 'geom',
   'properties': {'name': 'Pelham Parkway',
    'stacked': 1,
    'annoline1': 'Pelham Parkway',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.85475564017999,
     40.85741349808865,
     -73.85475564017999,
     40.85741349808865]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.13',
   'geometry': {'type': 'Point',
    'coordinates': [-73.78648845267413, 40.84724670491813]},
   'geometry_name': 'geom',
   'properties': {'name': 'City Island',
    'stacked': 2,
    'annoline1': 'City',
    'annoline2': 'Island',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.78648845267413,
     40.84724670491813,
     -73.78648845267413,
     40.84724670491813]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.14',
   'geometry': {'type': 'Point',
    'coordinates': [-73.8855121841913, 40.870185164975325]},
   'geometry_name': 'geom',
   'properties': {'name': 'Bedford Park',
    'stacked': 2,
    'annoline1': 'Bedford',
    'annoline2': 'Park',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.8855121841913,
     40.870185164975325,
     -73.8855121841913,
     40.870185164975325]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.15',
   'geometry': {'type': 'Point',
    'coordinates': [-73.9104159619131, 40.85572707719664]},
   'geometry_name': 'geom',
   'properties': {'name': 'University Heights',
    'stacked': 2,
    'annoline1': 'University',
    'annoline2': 'Heights',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.9104159619131,
     40.85572707719664,
     -73.9104159619131,
     40.85572707719664]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.16',
   'geometry': {'type': 'Point',
    'coordinates': [-73.91967159119565, 40.84789792606271]},
   'geometry_name': 'geom',
   'properties': {'name': 'Morris Heights',
    'stacked': 2,
    'annoline1': 'Morris',
    'annoline2': 'Heights',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.91967159119565,
     40.84789792606271,
     -73.91967159119565,
     40.84789792606271]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.17',
   'geometry': {'type': 'Point',
    'coordinates': [-73.89642655981623, 40.86099679638654]},
   'geometry_name': 'geom',
   'properties': {'name': 'Fordham',
    'stacked': 1,
    'annoline1': 'Fordham',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.89642655981623,
     40.86099679638654,
     -73.89642655981623,
     40.86099679638654]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.18',
   'geometry': {'type': 'Point',
    'coordinates': [-73.88735617532338, 40.84269615786053]},
   'geometry_name': 'geom',
   'properties': {'name': 'East Tremont',
    'stacked': 2,
    'annoline1': 'East',
    'annoline2': 'Tremont',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.88735617532338,
     40.84269615786053,
     -73.88735617532338,
     40.84269615786053]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.19',
   'geometry': {'type': 'Point',
    'coordinates': [-73.87774474910545, 40.83947505672653]},
   'geometry_name': 'geom',
   'properties': {'name': 'West Farms',
    'stacked': 2,
    'annoline1': 'West',
    'annoline2': 'Farms',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.87774474910545,
     40.83947505672653,
     -73.87774474910545,
     40.83947505672653]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.20',
   'geometry': {'type': 'Point',
    'coordinates': [-73.9261020935813, 40.836623010706056]},
   'geometry_name': 'geom',
   'properties': {'name': 'High  Bridge',
    'stacked': 1,
    'annoline1': 'Highbridge',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.9261020935813,
     40.836623010706056,
     -73.9261020935813,
     40.836623010706056]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.21',
   'geometry': {'type': 'Point',
    'coordinates': [-73.90942160757436, 40.819754370594936]},
   'geometry_name': 'geom',
   'properties': {'name': 'Melrose',
    'stacked': 1,
    'annoline1': 'Melrose',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.90942160757436,
     40.819754370594936,
     -73.90942160757436,
     40.819754370594936]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.22',
   'geometry': {'type': 'Point',
    'coordinates': [-73.91609987487575, 40.80623874935177]},
   'geometry_name': 'geom',
   'properties': {'name': 'Mott Haven',
    'stacked': 1,
    'annoline1': 'Mott Haven',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.91609987487575,
     40.80623874935177,
     -73.91609987487575,
     40.80623874935177]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.23',
   'geometry': {'type': 'Point',
    'coordinates': [-73.91322139386135, 40.801663627756206]},
   'geometry_name': 'geom',
   'properties': {'name': 'Port Morris',
    'stacked': 2,
    'annoline1': 'Port',
    'annoline2': 'Morris',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.91322139386135,
     40.801663627756206,
     -73.91322139386135,
     40.801663627756206]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.24',
   'geometry': {'type': 'Point',
    'coordinates': [-73.8957882009446, 40.81509904545822]},
   'geometry_name': 'geom',
   'properties': {'name': 'Longwood',
    'stacked': 1,
    'annoline1': 'Longwood',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.8957882009446,
     40.81509904545822,
     -73.8957882009446,
     40.81509904545822]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.25',
   'geometry': {'type': 'Point',
    'coordinates': [-73.88331505955291, 40.80972987938709]},
   'geometry_name': 'geom',
   'properties': {'name': 'Hunts Point',
    'stacked': 2,
    'annoline1': 'Hunts',
    'annoline2': 'Point',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.88331505955291,
     40.80972987938709,
     -73.88331505955291,
     40.80972987938709]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.26',
   'geometry': {'type': 'Point',
    'coordinates': [-73.90150648943059, 40.82359198585534]},
   'geometry_name': 'geom',
   'properties': {'name': 'Morrisania',
    'stacked': 1,
    'annoline1': 'Morrisania',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.90150648943059,
     40.82359198585534,
     -73.90150648943059,
     40.82359198585534]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.27',
   'geometry': {'type': 'Point',
    'coordinates': [-73.86574609554924, 40.821012197914015]},
   'geometry_name': 'geom',
   'properties': {'name': 'Soundview',
    'stacked': 1,
    'annoline1': 'Soundview',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.86574609554924,
     40.821012197914015,
     -73.86574609554924,
     40.821012197914015]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.28',
   'geometry': {'type': 'Point',
    'coordinates': [-73.85414416189266, 40.80655112003589]},
   'geometry_name': 'geom',
   'properties': {'name': 'Clason Point',
    'stacked': 2,
    'annoline1': 'Clason',
    'annoline2': 'Point',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.85414416189266,
     40.80655112003589,
     -73.85414416189266,
     40.80655112003589]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.29',
   'geometry': {'type': 'Point',
    'coordinates': [-73.81635002158441, 40.81510925804005]},
   'geometry_name': 'geom',
   'properties': {'name': 'Throgs Neck',
    'stacked': 1,
    'annoline1': 'Throgs Neck',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.81635002158441,
     40.81510925804005,
     -73.81635002158441,
     40.81510925804005]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.30',
   'geometry': {'type': 'Point',
    'coordinates': [-73.8240992675385, 40.844245936947374]},
   'geometry_name': 'geom',
   'properties': {'name': 'Country Club',
    'stacked': 2,
    'annoline1': 'Country',
    'annoline2': 'Club',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.8240992675385,
     40.844245936947374,
     -73.8240992675385,
     40.844245936947374]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.31',
   'geometry': {'type': 'Point',
    'coordinates': [-73.85600310535783, 40.837937822267286]},
   'geometry_name': 'geom',
   'properties': {'name': 'Parkchester',
    'stacked': 1,
    'annoline1': 'Parkchester',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.85600310535783,
     40.837937822267286,
     -73.85600310535783,
     40.837937822267286]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.32',
   'geometry': {'type': 'Point',
    'coordinates': [-73.84219407604444, 40.8406194964327]},
   'geometry_name': 'geom',
   'properties': {'name': 'Westchester Square',
    'stacked': 2,
    'annoline1': 'Westchester',
    'annoline2': 'Square',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.84219407604444,
     40.8406194964327,
     -73.84219407604444,
     40.8406194964327]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.33',
   'geometry': {'type': 'Point',
    'coordinates': [-73.8662991807561, 40.84360847124718]},
   'geometry_name': 'geom',
   'properties': {'name': 'Van Nest',
    'stacked': 2,
    'annoline1': 'Van',
    'annoline2': 'Nest',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.8662991807561,
     40.84360847124718,
     -73.8662991807561,
     40.84360847124718]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.34',
   'geometry': {'type': 'Point',
    'coordinates': [-73.85040178030421, 40.847549063536334]},
   'geometry_name': 'geom',
   'properties': {'name': 'Morris Park',
    'stacked': 1,
    'annoline1': 'Morris Park',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.85040178030421,
     40.847549063536334,
     -73.85040178030421,
     40.847549063536334]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.35',
   'geometry': {'type': 'Point',
    'coordinates': [-73.88845196134804, 40.85727710073895]},
   'geometry_name': 'geom',
   'properties': {'name': 'Belmont',
    'stacked': 1,
    'annoline1': 'Belmont',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.88845196134804,
     40.85727710073895,
     -73.88845196134804,
     40.85727710073895]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.36',
   'geometry': {'type': 'Point',
    'coordinates': [-73.91719048210393, 40.88139497727086]},
   'geometry_name': 'geom',
   'properties': {'name': 'Spuyten Duyvil',
    'stacked': 2,
    'annoline1': 'Spuyten',
    'annoline2': 'Duyvil',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.91719048210393,
     40.88139497727086,
     -73.91719048210393,
     40.88139497727086]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.37',
   'geometry': {'type': 'Point',
    'coordinates': [-73.90453054908927, 40.90854282950666]},
   'geometry_name': 'geom',
   'properties': {'name': 'North Riverdale',
    'stacked': 2,
    'annoline1': 'North',
    'annoline2': 'Riverdale',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.90453054908927,
     40.90854282950666,
     -73.90453054908927,
     40.90854282950666]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.38',
   'geometry': {'type': 'Point',
    'coordinates': [-73.8320737824047, 40.85064140940335]},
   'geometry_name': 'geom',
   'properties': {'name': 'Pelham Bay',
    'stacked': 2,
    'annoline1': 'Pelham',
    'annoline2': 'Bay',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.8320737824047,
     40.85064140940335,
     -73.8320737824047,
     40.85064140940335]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.39',
   'geometry': {'type': 'Point',
    'coordinates': [-73.82620275994073, 40.82657951686922]},
   'geometry_name': 'geom',
   'properties': {'name': 'Schuylerville',
    'stacked': 1,
    'annoline1': 'Schuylerville',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.82620275994073,
     40.82657951686922,
     -73.82620275994073,
     40.82657951686922]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.40',
   'geometry': {'type': 'Point',
    'coordinates': [-73.81388514428619, 40.821986118163494]},
   'geometry_name': 'geom',
   'properties': {'name': 'Edgewater Park',
    'stacked': 2,
    'annoline1': 'Edgewater',
    'annoline2': 'Park',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.81388514428619,
     40.821986118163494,
     -73.81388514428619,
     40.821986118163494]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.41',
   'geometry': {'type': 'Point',
    'coordinates': [-73.84802729582735, 40.819014376988314]},
   'geometry_name': 'geom',
   'properties': {'name': 'Castle Hill',
    'stacked': 2,
    'annoline1': 'Castle',
    'annoline2': 'Hill',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.84802729582735,
     40.819014376988314,
     -73.84802729582735,
     40.819014376988314]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.42',
   'geometry': {'type': 'Point',
    'coordinates': [-73.86332361652777, 40.87137078192371]},
   'geometry_name': 'geom',
   'properties': {'name': 'Olinville',
    'stacked': 1,
    'annoline1': 'Olinville',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.86332361652777,
     40.87137078192371,
     -73.86332361652777,
     40.87137078192371]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.43',
   'geometry': {'type': 'Point',
    'coordinates': [-73.84161194831223, 40.86296562477998]},
   'geometry_name': 'geom',
   'properties': {'name': 'Pelham Gardens',
    'stacked': 2,
    'annoline1': 'Pelham',
    'annoline2': 'Gardens',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.84161194831223,
     40.86296562477998,
     -73.84161194831223,
     40.86296562477998]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.44',
   'geometry': {'type': 'Point',
    'coordinates': [-73.91558941773444, 40.83428380733851]},
   'geometry_name': 'geom',
   'properties': {'name': 'Concourse',
    'stacked': 1,
    'annoline1': 'Concourse',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.91558941773444,
     40.83428380733851,
     -73.91558941773444,
     40.83428380733851]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.45',
   'geometry': {'type': 'Point',
    'coordinates': [-73.85053524451935, 40.82977429787161]},
   'geometry_name': 'geom',
   'properties': {'name': 'Unionport',
    'stacked': 1,
    'annoline1': 'Unionport',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.85053524451935,
     40.82977429787161,
     -73.85053524451935,
     40.82977429787161]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.46',
   'geometry': {'type': 'Point',
    'coordinates': [-73.84808271877168, 40.88456130303732]},
   'geometry_name': 'geom',
   'properties': {'name': 'Edenwald',
    'stacked': 1,
    'annoline1': 'Edenwald',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.84808271877168,
     40.88456130303732,
     -73.84808271877168,
     40.88456130303732]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.47',
   'geometry': {'type': 'Point',
    'coordinates': [-74.03062069353813, 40.625801065010656]},
   'geometry_name': 'geom',
   'properties': {'name': 'Bay Ridge',
    'stacked': 1,
    'annoline1': 'Bay Ridge',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-74.03062069353813,
     40.625801065010656,
     -74.03062069353813,
     40.625801065010656]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.48',
   'geometry': {'type': 'Point',
    'coordinates': [-73.99517998380729, 40.61100890202044]},
   'geometry_name': 'geom',
   'properties': {'name': 'Bensonhurst',
    'stacked': 1,
    'annoline1': 'Bensonhurst',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.99517998380729,
     40.61100890202044,
     -73.99517998380729,
     40.61100890202044]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.49',
   'geometry': {'type': 'Point',
    'coordinates': [-74.01031618527784, 40.64510294925429]},
   'geometry_name': 'geom',
   'properties': {'name': 'Sunset Park',
    'stacked': 2,
    'annoline1': 'Sunset',
    'annoline2': 'Park',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-74.01031618527784,
     40.64510294925429,
     -74.01031618527784,
     40.64510294925429]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.50',
   'geometry': {'type': 'Point',
    'coordinates': [-73.95424093127393, 40.7302009848647]},
   'geometry_name': 'geom',
   'properties': {'name': 'Greenpoint',
    'stacked': 1,
    'annoline1': 'Greenpoint',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.95424093127393,
     40.7302009848647,
     -73.95424093127393,
     40.7302009848647]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.51',
   'geometry': {'type': 'Point',
    'coordinates': [-73.97347087708445, 40.59526001306593]},
   'geometry_name': 'geom',
   'properties': {'name': 'Gravesend',
    'stacked': 1,
    'annoline1': 'Gravesend',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.97347087708445,
     40.59526001306593,
     -73.97347087708445,
     40.59526001306593]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.52',
   'geometry': {'type': 'Point',
    'coordinates': [-73.96509448785336, 40.57682506566604]},
   'geometry_name': 'geom',
   'properties': {'name': 'Brighton Beach',
    'stacked': 2,
    'annoline1': 'Brighton',
    'annoline2': 'Beach',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.96509448785336,
     40.57682506566604,
     -73.96509448785336,
     40.57682506566604]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.53',
   'geometry': {'type': 'Point',
    'coordinates': [-73.94318640482979, 40.58689012678384]},
   'geometry_name': 'geom',
   'properties': {'name': 'Sheepshead Bay',
    'stacked': 2,
    'annoline1': 'Sheepshead',
    'annoline2': 'Bay',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.94318640482979,
     40.58689012678384,
     -73.94318640482979,
     40.58689012678384]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.54',
   'geometry': {'type': 'Point',
    'coordinates': [-73.95743840559939, 40.61443251335098]},
   'geometry_name': 'geom',
   'properties': {'name': 'Manhattan Terrace',
    'stacked': 2,
    'annoline1': 'Manhattan',
    'annoline2': 'Terrace',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.95743840559939,
     40.61443251335098,
     -73.95743840559939,
     40.61443251335098]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.55',
   'geometry': {'type': 'Point',
    'coordinates': [-73.95840106533903, 40.63632589026677]},
   'geometry_name': 'geom',
   'properties': {'name': 'Flatbush',
    'stacked': 1,
    'annoline1': 'Flatbush',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.95840106533903,
     40.63632589026677,
     -73.95840106533903,
     40.63632589026677]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.56',
   'geometry': {'type': 'Point',
    'coordinates': [-73.94329119073582, 40.67082917695294]},
   'geometry_name': 'geom',
   'properties': {'name': 'Crown Heights',
    'stacked': 2,
    'annoline1': 'Crown',
    'annoline2': 'Heights',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.94329119073582,
     40.67082917695294,
     -73.94329119073582,
     40.67082917695294]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.57',
   'geometry': {'type': 'Point',
    'coordinates': [-73.93610256185836, 40.64171776668961]},
   'geometry_name': 'geom',
   'properties': {'name': 'East Flatbush',
    'stacked': 1,
    'annoline1': 'East Flatbush',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.93610256185836,
     40.64171776668961,
     -73.93610256185836,
     40.64171776668961]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.58',
   'geometry': {'type': 'Point',
    'coordinates': [-73.98042110559474, 40.642381958003526]},
   'geometry_name': 'geom',
   'properties': {'name': 'Kensington',
    'stacked': 1,
    'annoline1': 'Kensington',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.98042110559474,
     40.642381958003526,
     -73.98042110559474,
     40.642381958003526]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.59',
   'geometry': {'type': 'Point',
    'coordinates': [-73.98007340430172, 40.65694583575104]},
   'geometry_name': 'geom',
   'properties': {'name': 'Windsor Terrace',
    'stacked': 2,
    'annoline1': 'Windsor',
    'annoline2': 'Terrace',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.98007340430172,
     40.65694583575104,
     -73.98007340430172,
     40.65694583575104]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.60',
   'geometry': {'type': 'Point',
    'coordinates': [-73.9648592426269, 40.676822262254724]},
   'geometry_name': 'geom',
   'properties': {'name': 'Prospect Heights',
    'stacked': 2,
    'annoline1': 'Prospect',
    'annoline2': 'Heights',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.9648592426269,
     40.676822262254724,
     -73.9648592426269,
     40.676822262254724]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.61',
   'geometry': {'type': 'Point',
    'coordinates': [-73.91023536176607, 40.66394994339755]},
   'geometry_name': 'geom',
   'properties': {'name': 'Brownsville',
    'stacked': 1,
    'annoline1': 'Brownsville',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.91023536176607,
     40.66394994339755,
     -73.91023536176607,
     40.66394994339755]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.62',
   'geometry': {'type': 'Point',
    'coordinates': [-73.95811529220927, 40.70714439344251]},
   'geometry_name': 'geom',
   'properties': {'name': 'Williamsburg',
    'stacked': 1,
    'annoline1': 'Williamsburg',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.95811529220927,
     40.70714439344251,
     -73.95811529220927,
     40.70714439344251]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.63',
   'geometry': {'type': 'Point',
    'coordinates': [-73.92525797487045, 40.69811611017901]},
   'geometry_name': 'geom',
   'properties': {'name': 'Bushwick',
    'stacked': 1,
    'annoline1': 'Bushwick',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.92525797487045,
     40.69811611017901,
     -73.92525797487045,
     40.69811611017901]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.64',
   'geometry': {'type': 'Point',
    'coordinates': [-73.94178488690297, 40.687231607720456]},
   'geometry_name': 'geom',
   'properties': {'name': 'Bedford Stuyvesant',
    'stacked': 1,
    'annoline1': 'Bedford Stuyvesant',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.94178488690297,
     40.687231607720456,
     -73.94178488690297,
     40.687231607720456]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.65',
   'geometry': {'type': 'Point',
    'coordinates': [-73.99378225496424, 40.695863722724084]},
   'geometry_name': 'geom',
   'properties': {'name': 'Brooklyn Heights',
    'stacked': 2,
    'annoline1': 'Brooklyn',
    'annoline2': 'Heights',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.99378225496424,
     40.695863722724084,
     -73.99378225496424,
     40.695863722724084]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.66',
   'geometry': {'type': 'Point',
    'coordinates': [-73.99856139218463, 40.687919722485574]},
   'geometry_name': 'geom',
   'properties': {'name': 'Cobble Hill',
    'stacked': 2,
    'annoline1': 'Cobble',
    'annoline2': 'Hill',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.99856139218463,
     40.687919722485574,
     -73.99856139218463,
     40.687919722485574]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.67',
   'geometry': {'type': 'Point',
    'coordinates': [-73.99465372828006, 40.680540231076485]},
   'geometry_name': 'geom',
   'properties': {'name': 'Carroll Gardens',
    'stacked': 2,
    'annoline1': 'Carroll',
    'annoline2': 'Gardens',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.99465372828006,
     40.680540231076485,
     -73.99465372828006,
     40.680540231076485]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.68',
   'geometry': {'type': 'Point',
    'coordinates': [-74.0127589747356, 40.676253230250886]},
   'geometry_name': 'geom',
   'properties': {'name': 'Red Hook',
    'stacked': 2,
    'annoline1': 'Red',
    'annoline2': 'Hook',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-74.0127589747356,
     40.676253230250886,
     -74.0127589747356,
     40.676253230250886]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.69',
   'geometry': {'type': 'Point',
    'coordinates': [-73.99444087145339, 40.673931143187154]},
   'geometry_name': 'geom',
   'properties': {'name': 'Gowanus',
    'stacked': 1,
    'annoline1': 'Gowanus',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.99444087145339,
     40.673931143187154,
     -73.99444087145339,
     40.673931143187154]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.70',
   'geometry': {'type': 'Point',
    'coordinates': [-73.97290574369092, 40.68852726018977]},
   'geometry_name': 'geom',
   'properties': {'name': 'Fort Greene',
    'stacked': 2,
    'annoline1': 'Fort',
    'annoline2': 'Greene',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.97290574369092,
     40.68852726018977,
     -73.97290574369092,
     40.68852726018977]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.71',
   'geometry': {'type': 'Point',
    'coordinates': [-73.97705030183924, 40.67232052268197]},
   'geometry_name': 'geom',
   'properties': {'name': 'Park Slope',
    'stacked': 2,
    'annoline1': 'Park',
    'annoline2': 'Slope',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.97705030183924,
     40.67232052268197,
     -73.97705030183924,
     40.67232052268197]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.72',
   'geometry': {'type': 'Point',
    'coordinates': [-73.87661596457296, 40.68239101144211]},
   'geometry_name': 'geom',
   'properties': {'name': 'Cypress Hills',
    'stacked': 2,
    'annoline1': 'Cypress',
    'annoline2': 'Hills',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.87661596457296,
     40.68239101144211,
     -73.87661596457296,
     40.68239101144211]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.73',
   'geometry': {'type': 'Point',
    'coordinates': [-73.88069863917366, 40.669925700847045]},
   'geometry_name': 'geom',
   'properties': {'name': 'East New York',
    'stacked': 1,
    'annoline1': 'East New York',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.88069863917366,
     40.669925700847045,
     -73.88069863917366,
     40.669925700847045]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.74',
   'geometry': {'type': 'Point',
    'coordinates': [-73.87936970045875, 40.64758905230874]},
   'geometry_name': 'geom',
   'properties': {'name': 'Starrett City',
    'stacked': 2,
    'annoline1': 'Starrett',
    'annoline2': 'City',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.87936970045875,
     40.64758905230874,
     -73.87936970045875,
     40.64758905230874]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.75',
   'geometry': {'type': 'Point',
    'coordinates': [-73.90209269778966, 40.63556432797428]},
   'geometry_name': 'geom',
   'properties': {'name': 'Canarsie',
    'stacked': 1,
    'annoline1': 'Canarsie',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.90209269778966,
     40.63556432797428,
     -73.90209269778966,
     40.63556432797428]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.76',
   'geometry': {'type': 'Point',
    'coordinates': [-73.92911302644674, 40.630446043757466]},
   'geometry_name': 'geom',
   'properties': {'name': 'Flatlands',
    'stacked': 1,
    'annoline1': 'Flatlands',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.92911302644674,
     40.630446043757466,
     -73.92911302644674,
     40.630446043757466]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.77',
   'geometry': {'type': 'Point',
    'coordinates': [-73.90818571777423, 40.606336421685626]},
   'geometry_name': 'geom',
   'properties': {'name': 'Mill Island',
    'stacked': 2,
    'annoline1': 'Mill',
    'annoline2': 'Island',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.90818571777423,
     40.606336421685626,
     -73.90818571777423,
     40.606336421685626]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.78',
   'geometry': {'type': 'Point',
    'coordinates': [-73.94353722891886, 40.57791350308657]},
   'geometry_name': 'geom',
   'properties': {'name': 'Manhattan Beach',
    'stacked': 2,
    'annoline1': 'Manhattan',
    'annoline2': 'Beach',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.94353722891886,
     40.57791350308657,
     -73.94353722891886,
     40.57791350308657]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.79',
   'geometry': {'type': 'Point',
    'coordinates': [-73.98868295821637, 40.57429256471601]},
   'geometry_name': 'geom',
   'properties': {'name': 'Coney Island',
    'stacked': 1,
    'annoline1': 'Coney Island',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.98868295821637,
     40.57429256471601,
     -73.98868295821637,
     40.57429256471601]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.80',
   'geometry': {'type': 'Point',
    'coordinates': [-73.99875221443519, 40.59951870282238]},
   'geometry_name': 'geom',
   'properties': {'name': 'Bath Beach',
    'stacked': 2,
    'annoline1': 'Bath',
    'annoline2': 'Beach',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.99875221443519,
     40.59951870282238,
     -73.99875221443519,
     40.59951870282238]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.81',
   'geometry': {'type': 'Point',
    'coordinates': [-73.99049823044811, 40.633130512758015]},
   'geometry_name': 'geom',
   'properties': {'name': 'Borough Park',
    'stacked': 2,
    'annoline1': 'Borough',
    'annoline2': 'Park',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.99049823044811,
     40.633130512758015,
     -73.99049823044811,
     40.633130512758015]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.82',
   'geometry': {'type': 'Point',
    'coordinates': [-74.01931375636022, 40.619219457722636]},
   'geometry_name': 'geom',
   'properties': {'name': 'Dyker Heights',
    'stacked': 2,
    'annoline1': 'Dyker',
    'annoline2': 'Heights',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-74.01931375636022,
     40.619219457722636,
     -74.01931375636022,
     40.619219457722636]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.83',
   'geometry': {'type': 'Point',
    'coordinates': [-73.93010170691196, 40.590848433902046]},
   'geometry_name': 'geom',
   'properties': {'name': 'Gerritsen Beach',
    'stacked': 2,
    'annoline1': 'Gerritsen',
    'annoline2': 'Beach',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.93010170691196,
     40.590848433902046,
     -73.93010170691196,
     40.590848433902046]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.84',
   'geometry': {'type': 'Point',
    'coordinates': [-73.93134404108497, 40.609747779894604]},
   'geometry_name': 'geom',
   'properties': {'name': 'Marine Park',
    'stacked': 1,
    'annoline1': 'Marine Park',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.93134404108497,
     40.609747779894604,
     -73.93134404108497,
     40.609747779894604]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.85',
   'geometry': {'type': 'Point',
    'coordinates': [-73.96784306216367, 40.693229421881504]},
   'geometry_name': 'geom',
   'properties': {'name': 'Clinton Hill',
    'stacked': 2,
    'annoline1': 'Clinton',
    'annoline2': 'Hill',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.96784306216367,
     40.693229421881504,
     -73.96784306216367,
     40.693229421881504]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.86',
   'geometry': {'type': 'Point',
    'coordinates': [-74.0078731120024, 40.57637537890224]},
   'geometry_name': 'geom',
   'properties': {'name': 'Sea Gate',
    'stacked': 2,
    'annoline1': 'Sea',
    'annoline2': 'Gate',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-74.0078731120024,
     40.57637537890224,
     -74.0078731120024,
     40.57637537890224]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.87',
   'geometry': {'type': 'Point',
    'coordinates': [-73.98346337431099, 40.69084402109802]},
   'geometry_name': 'geom',
   'properties': {'name': 'Downtown',
    'stacked': 1,
    'annoline1': 'Downtown',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.98346337431099,
     40.69084402109802,
     -73.98346337431099,
     40.69084402109802]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.88',
   'geometry': {'type': 'Point',
    'coordinates': [-73.98374824115798, 40.685682912091444]},
   'geometry_name': 'geom',
   'properties': {'name': 'Boerum Hill',
    'stacked': 2,
    'annoline1': 'Boerum',
    'annoline2': 'Hill',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.98374824115798,
     40.685682912091444,
     -73.98374824115798,
     40.685682912091444]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.89',
   'geometry': {'type': 'Point',
    'coordinates': [-73.95489867077713, 40.658420017469815]},
   'geometry_name': 'geom',
   'properties': {'name': 'Prospect Lefferts Gardens',
    'stacked': 3,
    'annoline1': 'Prospect',
    'annoline2': 'Lefferts',
    'annoline3': 'Gardens',
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.95489867077713,
     40.658420017469815,
     -73.95489867077713,
     40.658420017469815]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.90',
   'geometry': {'type': 'Point',
    'coordinates': [-73.91306831787395, 40.678402554795355]},
   'geometry_name': 'geom',
   'properties': {'name': 'Ocean Hill',
    'stacked': 2,
    'annoline1': 'Ocean',
    'annoline2': 'Hill',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.91306831787395,
     40.678402554795355,
     -73.91306831787395,
     40.678402554795355]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.91',
   'geometry': {'type': 'Point',
    'coordinates': [-73.86797598081334, 40.67856995727479]},
   'geometry_name': 'geom',
   'properties': {'name': 'City Line',
    'stacked': 2,
    'annoline1': 'City',
    'annoline2': 'Line',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.86797598081334,
     40.67856995727479,
     -73.86797598081334,
     40.67856995727479]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.92',
   'geometry': {'type': 'Point',
    'coordinates': [-73.89855633630317, 40.61514955045308]},
   'geometry_name': 'geom',
   'properties': {'name': 'Bergen Beach',
    'stacked': 2,
    'annoline1': 'Bergen',
    'annoline2': 'Beach',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.89855633630317,
     40.61514955045308,
     -73.89855633630317,
     40.61514955045308]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.93',
   'geometry': {'type': 'Point',
    'coordinates': [-73.95759523489838, 40.62559589869843]},
   'geometry_name': 'geom',
   'properties': {'name': 'Midwood',
    'stacked': 1,
    'annoline1': 'Midwood',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.95759523489838,
     40.62559589869843,
     -73.95759523489838,
     40.62559589869843]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.94',
   'geometry': {'type': 'Point',
    'coordinates': [-73.96261316716048, 40.647008603185185]},
   'geometry_name': 'geom',
   'properties': {'name': 'Prospect Park South',
    'stacked': 2,
    'annoline1': 'Prospect',
    'annoline2': 'Park South',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.96261316716048,
     40.647008603185185,
     -73.96261316716048,
     40.647008603185185]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.95',
   'geometry': {'type': 'Point',
    'coordinates': [-73.91607483951324, 40.62384524478419]},
   'geometry_name': 'geom',
   'properties': {'name': 'Georgetown',
    'stacked': 1,
    'annoline1': 'Georgetown',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.91607483951324,
     40.62384524478419,
     -73.91607483951324,
     40.62384524478419]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.96',
   'geometry': {'type': 'Point',
    'coordinates': [-73.93885815269195, 40.70849241041548]},
   'geometry_name': 'geom',
   'properties': {'name': 'East Williamsburg',
    'stacked': 2,
    'annoline1': 'East',
    'annoline2': 'Williamsburg',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.93885815269195,
     40.70849241041548,
     -73.93885815269195,
     40.70849241041548]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.97',
   'geometry': {'type': 'Point',
    'coordinates': [-73.95880857587582, 40.714822906532014]},
   'geometry_name': 'geom',
   'properties': {'name': 'North Side',
    'stacked': 1,
    'annoline1': 'North Side',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.95880857587582,
     40.714822906532014,
     -73.95880857587582,
     40.714822906532014]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.98',
   'geometry': {'type': 'Point',
    'coordinates': [-73.95800095153331, 40.71086147265064]},
   'geometry_name': 'geom',
   'properties': {'name': 'South Side',
    'stacked': 1,
    'annoline1': 'South Side',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.95800095153331,
     40.71086147265064,
     -73.95800095153331,
     40.71086147265064]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.99',
   'geometry': {'type': 'Point',
    'coordinates': [-73.96836678035541, 40.61305976667942]},
   'geometry_name': 'geom',
   'properties': {'name': 'Ocean Parkway',
    'stacked': 2,
    'annoline1': 'Ocean',
    'annoline2': 'Parkway',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.96836678035541,
     40.61305976667942,
     -73.96836678035541,
     40.61305976667942]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.100',
   'geometry': {'type': 'Point',
    'coordinates': [-74.03197914537984, 40.61476812694226]},
   'geometry_name': 'geom',
   'properties': {'name': 'Fort Hamilton',
    'stacked': 2,
    'annoline1': 'Fort',
    'annoline2': 'Hamilton',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-74.03197914537984,
     40.61476812694226,
     -74.03197914537984,
     40.61476812694226]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.101',
   'geometry': {'type': 'Point',
    'coordinates': [-73.99427936255978, 40.71561842231432]},
   'geometry_name': 'geom',
   'properties': {'name': 'Chinatown',
    'stacked': 1,
    'annoline1': 'Chinatown',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.99427936255978,
     40.71561842231432,
     -73.99427936255978,
     40.71561842231432]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.102',
   'geometry': {'type': 'Point',
    'coordinates': [-73.93690027985234, 40.85190252555305]},
   'geometry_name': 'geom',
   'properties': {'name': 'Washington Heights',
    'stacked': 2,
    'annoline1': 'Washington',
    'annoline2': 'Heights',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.93690027985234,
     40.85190252555305,
     -73.93690027985234,
     40.85190252555305]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.103',
   'geometry': {'type': 'Point',
    'coordinates': [-73.92121042203897, 40.86768396449915]},
   'geometry_name': 'geom',
   'properties': {'name': 'Inwood',
    'stacked': 1,
    'annoline1': 'Inwood',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.92121042203897,
     40.86768396449915,
     -73.92121042203897,
     40.86768396449915]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.104',
   'geometry': {'type': 'Point',
    'coordinates': [-73.94968791883366, 40.823604284811935]},
   'geometry_name': 'geom',
   'properties': {'name': 'Hamilton Heights',
    'stacked': 2,
    'annoline1': 'Hamilton',
    'annoline2': 'Heights',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.94968791883366,
     40.823604284811935,
     -73.94968791883366,
     40.823604284811935]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.105',
   'geometry': {'type': 'Point',
    'coordinates': [-73.9573853935188, 40.8169344294978]},
   'geometry_name': 'geom',
   'properties': {'name': 'Manhattanville',
    'stacked': 2,
    'annoline1': 'Manhattanville',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.9573853935188,
     40.8169344294978,
     -73.9573853935188,
     40.8169344294978]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.106',
   'geometry': {'type': 'Point',
    'coordinates': [-73.94321112603905, 40.81597606742414]},
   'geometry_name': 'geom',
   'properties': {'name': 'Central Harlem',
    'stacked': 2,
    'annoline1': 'Central',
    'annoline2': 'Harlem',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.94321112603905,
     40.81597606742414,
     -73.94321112603905,
     40.81597606742414]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.107',
   'geometry': {'type': 'Point',
    'coordinates': [-73.94418223148524, 40.79224946663033]},
   'geometry_name': 'geom',
   'properties': {'name': 'East Harlem',
    'stacked': 2,
    'annoline1': 'East',
    'annoline2': 'Harlem',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.94418223148524,
     40.79224946663033,
     -73.94418223148524,
     40.79224946663033]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.108',
   'geometry': {'type': 'Point',
    'coordinates': [-73.96050763135, 40.775638573301805]},
   'geometry_name': 'geom',
   'properties': {'name': 'Upper East Side',
    'stacked': 3,
    'annoline1': 'Upper',
    'annoline2': 'East',
    'annoline3': 'Side',
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.96050763135,
     40.775638573301805,
     -73.96050763135,
     40.775638573301805]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.109',
   'geometry': {'type': 'Point',
    'coordinates': [-73.94711784471826, 40.775929849884875]},
   'geometry_name': 'geom',
   'properties': {'name': 'Yorkville',
    'stacked': 1,
    'annoline1': 'Yorkville',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.94711784471826,
     40.775929849884875,
     -73.94711784471826,
     40.775929849884875]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.110',
   'geometry': {'type': 'Point',
    'coordinates': [-73.9588596881376, 40.76811265828733]},
   'geometry_name': 'geom',
   'properties': {'name': 'Lenox Hill',
    'stacked': 2,
    'annoline1': 'Lenox',
    'annoline2': 'Hill',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.9588596881376,
     40.76811265828733,
     -73.9588596881376,
     40.76811265828733]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.111',
   'geometry': {'type': 'Point',
    'coordinates': [-73.94916769227953, 40.76215960576283]},
   'geometry_name': 'geom',
   'properties': {'name': 'Roosevelt Island',
    'stacked': 1,
    'annoline1': 'Roosevelt Island',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 56,
    'borough': 'Manhattan',
    'bbox': [-73.94916769227953,
     40.76215960576283,
     -73.94916769227953,
     40.76215960576283]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.112',
   'geometry': {'type': 'Point',
    'coordinates': [-73.97705923630603, 40.787657998534854]},
   'geometry_name': 'geom',
   'properties': {'name': 'Upper West Side',
    'stacked': 3,
    'annoline1': 'Upper',
    'annoline2': 'West',
    'annoline3': 'Side',
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.97705923630603,
     40.787657998534854,
     -73.97705923630603,
     40.787657998534854]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.113',
   'geometry': {'type': 'Point',
    'coordinates': [-73.98533777001262, 40.77352888942166]},
   'geometry_name': 'geom',
   'properties': {'name': 'Lincoln Square',
    'stacked': 2,
    'annoline1': 'Lincoln',
    'annoline2': 'Square',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.98533777001262,
     40.77352888942166,
     -73.98533777001262,
     40.77352888942166]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.114',
   'geometry': {'type': 'Point',
    'coordinates': [-73.99611936309479, 40.75910089146212]},
   'geometry_name': 'geom',
   'properties': {'name': 'Clinton',
    'stacked': 1,
    'annoline1': 'Clinton',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.99611936309479,
     40.75910089146212,
     -73.99611936309479,
     40.75910089146212]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.115',
   'geometry': {'type': 'Point',
    'coordinates': [-73.98166882730304, 40.75469110270623]},
   'geometry_name': 'geom',
   'properties': {'name': 'Midtown',
    'stacked': 1,
    'annoline1': 'Midtown',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.98166882730304,
     40.75469110270623,
     -73.98166882730304,
     40.75469110270623]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.116',
   'geometry': {'type': 'Point',
    'coordinates': [-73.97833207924127, 40.748303077252174]},
   'geometry_name': 'geom',
   'properties': {'name': 'Murray Hill',
    'stacked': 2,
    'annoline1': 'Murray',
    'annoline2': 'Hill',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.97833207924127,
     40.748303077252174,
     -73.97833207924127,
     40.748303077252174]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.117',
   'geometry': {'type': 'Point',
    'coordinates': [-74.00311633472813, 40.744034706747975]},
   'geometry_name': 'geom',
   'properties': {'name': 'Chelsea',
    'stacked': 1,
    'annoline1': 'Chelsea',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-74.00311633472813,
     40.744034706747975,
     -74.00311633472813,
     40.744034706747975]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.118',
   'geometry': {'type': 'Point',
    'coordinates': [-73.99991402945902, 40.72693288536128]},
   'geometry_name': 'geom',
   'properties': {'name': 'Greenwich Village',
    'stacked': 2,
    'annoline1': 'Greenwich',
    'annoline2': 'Village',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.99991402945902,
     40.72693288536128,
     -73.99991402945902,
     40.72693288536128]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.119',
   'geometry': {'type': 'Point',
    'coordinates': [-73.98222616506416, 40.727846777270244]},
   'geometry_name': 'geom',
   'properties': {'name': 'East Village',
    'stacked': 2,
    'annoline1': 'East',
    'annoline2': 'Village',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.98222616506416,
     40.727846777270244,
     -73.98222616506416,
     40.727846777270244]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.120',
   'geometry': {'type': 'Point',
    'coordinates': [-73.98089031999291, 40.71780674892765]},
   'geometry_name': 'geom',
   'properties': {'name': 'Lower East Side',
    'stacked': 3,
    'annoline1': 'Lower',
    'annoline2': 'East',
    'annoline3': 'Side',
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.98089031999291,
     40.71780674892765,
     -73.98089031999291,
     40.71780674892765]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.121',
   'geometry': {'type': 'Point',
    'coordinates': [-74.01068328559087, 40.721521967443216]},
   'geometry_name': 'geom',
   'properties': {'name': 'Tribeca',
    'stacked': 1,
    'annoline1': 'Tribeca',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-74.01068328559087,
     40.721521967443216,
     -74.01068328559087,
     40.721521967443216]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.122',
   'geometry': {'type': 'Point',
    'coordinates': [-73.99730467208073, 40.71932379395907]},
   'geometry_name': 'geom',
   'properties': {'name': 'Little Italy',
    'stacked': 2,
    'annoline1': 'Little',
    'annoline2': 'Italy',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.99730467208073,
     40.71932379395907,
     -73.99730467208073,
     40.71932379395907]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.123',
   'geometry': {'type': 'Point',
    'coordinates': [-74.00065666959759, 40.72218384131794]},
   'geometry_name': 'geom',
   'properties': {'name': 'Soho',
    'stacked': 1,
    'annoline1': 'Soho',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-74.00065666959759,
     40.72218384131794,
     -74.00065666959759,
     40.72218384131794]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.124',
   'geometry': {'type': 'Point',
    'coordinates': [-74.00617998126812, 40.73443393572434]},
   'geometry_name': 'geom',
   'properties': {'name': 'West Village',
    'stacked': 2,
    'annoline1': 'West',
    'annoline2': 'Village',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-74.00617998126812,
     40.73443393572434,
     -74.00617998126812,
     40.73443393572434]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.125',
   'geometry': {'type': 'Point',
    'coordinates': [-73.96428617740655, 40.797307041702865]},
   'geometry_name': 'geom',
   'properties': {'name': 'Manhattan Valley',
    'stacked': 2,
    'annoline1': 'Manhattan',
    'annoline2': 'Valley',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.96428617740655,
     40.797307041702865,
     -73.96428617740655,
     40.797307041702865]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.126',
   'geometry': {'type': 'Point',
    'coordinates': [-73.96389627905332, 40.807999738165826]},
   'geometry_name': 'geom',
   'properties': {'name': 'Morningside Heights',
    'stacked': 2,
    'annoline1': 'Morningside',
    'annoline2': 'Heights',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.96389627905332,
     40.807999738165826,
     -73.96389627905332,
     40.807999738165826]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.127',
   'geometry': {'type': 'Point',
    'coordinates': [-73.98137594833541, 40.737209832715]},
   'geometry_name': 'geom',
   'properties': {'name': 'Gramercy',
    'stacked': 1,
    'annoline1': 'Gramercy',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.98137594833541,
     40.737209832715,
     -73.98137594833541,
     40.737209832715]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.128',
   'geometry': {'type': 'Point',
    'coordinates': [-74.01686930508617, 40.71193198394565]},
   'geometry_name': 'geom',
   'properties': {'name': 'Battery Park City',
    'stacked': 3,
    'annoline1': 'Battery',
    'annoline2': 'Park',
    'annoline3': 'City',
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-74.01686930508617,
     40.71193198394565,
     -74.01686930508617,
     40.71193198394565]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.129',
   'geometry': {'type': 'Point',
    'coordinates': [-74.0106654452127, 40.70710710727048]},
   'geometry_name': 'geom',
   'properties': {'name': 'Financial District',
    'stacked': 2,
    'annoline1': 'Financial',
    'annoline2': 'District',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-74.0106654452127,
     40.70710710727048,
     -74.0106654452127,
     40.70710710727048]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.130',
   'geometry': {'type': 'Point',
    'coordinates': [-73.91565374304234, 40.76850859335492]},
   'geometry_name': 'geom',
   'properties': {'name': 'Astoria',
    'stacked': 1,
    'annoline1': 'Astoria',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.91565374304234,
     40.76850859335492,
     -73.91565374304234,
     40.76850859335492]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.131',
   'geometry': {'type': 'Point',
    'coordinates': [-73.90184166838284, 40.74634908860222]},
   'geometry_name': 'geom',
   'properties': {'name': 'Woodside',
    'stacked': 1,
    'annoline1': 'Woodside',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.90184166838284,
     40.74634908860222,
     -73.90184166838284,
     40.74634908860222]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.132',
   'geometry': {'type': 'Point',
    'coordinates': [-73.88282109164365, 40.75198138007367]},
   'geometry_name': 'geom',
   'properties': {'name': 'Jackson Heights',
    'stacked': 2,
    'annoline1': 'Jackson',
    'annoline2': 'Heights',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.88282109164365,
     40.75198138007367,
     -73.88282109164365,
     40.75198138007367]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.133',
   'geometry': {'type': 'Point',
    'coordinates': [-73.88165622288388, 40.744048505122024]},
   'geometry_name': 'geom',
   'properties': {'name': 'Elmhurst',
    'stacked': 1,
    'annoline1': 'Elmhurst',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.88165622288388,
     40.744048505122024,
     -73.88165622288388,
     40.744048505122024]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.134',
   'geometry': {'type': 'Point',
    'coordinates': [-73.8381376460028, 40.65422527738487]},
   'geometry_name': 'geom',
   'properties': {'name': 'Howard Beach',
    'stacked': 2,
    'annoline1': 'Howard',
    'annoline2': 'Beach',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.8381376460028,
     40.65422527738487,
     -73.8381376460028,
     40.65422527738487]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.135',
   'geometry': {'type': 'Point',
    'coordinates': [-73.85682497345258, 40.74238175015667]},
   'geometry_name': 'geom',
   'properties': {'name': 'Corona',
    'stacked': 1,
    'annoline1': 'Corona',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.85682497345258,
     40.74238175015667,
     -73.85682497345258,
     40.74238175015667]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.136',
   'geometry': {'type': 'Point',
    'coordinates': [-73.84447500788983, 40.72526378216503]},
   'geometry_name': 'geom',
   'properties': {'name': 'Forest Hills',
    'stacked': 2,
    'annoline1': 'Forest',
    'annoline2': 'Hills',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.84447500788983,
     40.72526378216503,
     -73.84447500788983,
     40.72526378216503]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.137',
   'geometry': {'type': 'Point',
    'coordinates': [-73.82981905825703, 40.7051790354148]},
   'geometry_name': 'geom',
   'properties': {'name': 'Kew Gardens',
    'stacked': 2,
    'annoline1': 'Kew',
    'annoline2': 'Gardens',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.82981905825703,
     40.7051790354148,
     -73.82981905825703,
     40.7051790354148]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.138',
   'geometry': {'type': 'Point',
    'coordinates': [-73.83183321446887, 40.69794731471763]},
   'geometry_name': 'geom',
   'properties': {'name': 'Richmond Hill',
    'stacked': 2,
    'annoline1': 'Richmond',
    'annoline2': 'Hill',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.83183321446887,
     40.69794731471763,
     -73.83183321446887,
     40.69794731471763]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.139',
   'geometry': {'type': 'Point',
    'coordinates': [-73.83177300329582, 40.76445419697846]},
   'geometry_name': 'geom',
   'properties': {'name': 'Flushing',
    'stacked': 1,
    'annoline1': 'Flushing',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.83177300329582,
     40.76445419697846,
     -73.83177300329582,
     40.76445419697846]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.140',
   'geometry': {'type': 'Point',
    'coordinates': [-73.93920223915505, 40.75021734610528]},
   'geometry_name': 'geom',
   'properties': {'name': 'Long Island City',
    'stacked': 3,
    'annoline1': 'Long',
    'annoline2': 'Island',
    'annoline3': 'City',
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.93920223915505,
     40.75021734610528,
     -73.93920223915505,
     40.75021734610528]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.141',
   'geometry': {'type': 'Point',
    'coordinates': [-73.92691617561577, 40.74017628351924]},
   'geometry_name': 'geom',
   'properties': {'name': 'Sunnyside',
    'stacked': 1,
    'annoline1': 'Sunnyside',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.92691617561577,
     40.74017628351924,
     -73.92691617561577,
     40.74017628351924]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.142',
   'geometry': {'type': 'Point',
    'coordinates': [-73.86704147658772, 40.76407323883091]},
   'geometry_name': 'geom',
   'properties': {'name': 'East Elmhurst',
    'stacked': 2,
    'annoline1': 'East',
    'annoline2': 'Elmhurst',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.86704147658772,
     40.76407323883091,
     -73.86704147658772,
     40.76407323883091]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.143',
   'geometry': {'type': 'Point',
    'coordinates': [-73.89621713626859, 40.725427374093606]},
   'geometry_name': 'geom',
   'properties': {'name': 'Maspeth',
    'stacked': 1,
    'annoline1': 'Maspeth',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.89621713626859,
     40.725427374093606,
     -73.89621713626859,
     40.725427374093606]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.144',
   'geometry': {'type': 'Point',
    'coordinates': [-73.90143517559589, 40.70832315613858]},
   'geometry_name': 'geom',
   'properties': {'name': 'Ridgewood',
    'stacked': 1,
    'annoline1': 'Ridgewood',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.90143517559589,
     40.70832315613858,
     -73.90143517559589,
     40.70832315613858]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.145',
   'geometry': {'type': 'Point',
    'coordinates': [-73.87074167435605, 40.70276242967838]},
   'geometry_name': 'geom',
   'properties': {'name': 'Glendale',
    'stacked': 1,
    'annoline1': 'Glendale',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.87074167435605,
     40.70276242967838,
     -73.87074167435605,
     40.70276242967838]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.146',
   'geometry': {'type': 'Point',
    'coordinates': [-73.8578268690537, 40.72897409480735]},
   'geometry_name': 'geom',
   'properties': {'name': 'Rego Park',
    'stacked': 1,
    'annoline1': 'Rego Park',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.8578268690537,
     40.72897409480735,
     -73.8578268690537,
     40.72897409480735]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.147',
   'geometry': {'type': 'Point',
    'coordinates': [-73.8581104655432, 40.68988687915789]},
   'geometry_name': 'geom',
   'properties': {'name': 'Woodhaven',
    'stacked': 1,
    'annoline1': 'Woodhaven',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.8581104655432,
     40.68988687915789,
     -73.8581104655432,
     40.68988687915789]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.148',
   'geometry': {'type': 'Point',
    'coordinates': [-73.84320266173447, 40.680708468265415]},
   'geometry_name': 'geom',
   'properties': {'name': 'Ozone Park',
    'stacked': 1,
    'annoline1': 'Ozone Park',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.84320266173447,
     40.680708468265415,
     -73.84320266173447,
     40.680708468265415]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.149',
   'geometry': {'type': 'Point',
    'coordinates': [-73.80986478649041, 40.66854957767195]},
   'geometry_name': 'geom',
   'properties': {'name': 'South Ozone Park',
    'stacked': 2,
    'annoline1': 'South',
    'annoline2': 'Ozone Park',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.80986478649041,
     40.66854957767195,
     -73.80986478649041,
     40.66854957767195]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.150',
   'geometry': {'type': 'Point',
    'coordinates': [-73.84304528896125, 40.784902749260205]},
   'geometry_name': 'geom',
   'properties': {'name': 'College Point',
    'stacked': 2,
    'annoline1': 'College',
    'annoline2': 'Point',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.84304528896125,
     40.784902749260205,
     -73.84304528896125,
     40.784902749260205]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.151',
   'geometry': {'type': 'Point',
    'coordinates': [-73.81420216610863, 40.78129076602694]},
   'geometry_name': 'geom',
   'properties': {'name': 'Whitestone',
    'stacked': 1,
    'annoline1': 'Whitestone',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.81420216610863,
     40.78129076602694,
     -73.81420216610863,
     40.78129076602694]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.152',
   'geometry': {'type': 'Point',
    'coordinates': [-73.7742736306867, 40.76604063281064]},
   'geometry_name': 'geom',
   'properties': {'name': 'Bayside',
    'stacked': 1,
    'annoline1': 'Bayside',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.7742736306867,
     40.76604063281064,
     -73.7742736306867,
     40.76604063281064]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.153',
   'geometry': {'type': 'Point',
    'coordinates': [-73.79176243728061, 40.76172954903262]},
   'geometry_name': 'geom',
   'properties': {'name': 'Auburndale',
    'stacked': 1,
    'annoline1': 'Auburndale',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.79176243728061,
     40.76172954903262,
     -73.79176243728061,
     40.76172954903262]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.154',
   'geometry': {'type': 'Point',
    'coordinates': [-73.7388977558074, 40.7708261928267]},
   'geometry_name': 'geom',
   'properties': {'name': 'Little Neck',
    'stacked': 2,
    'annoline1': 'Little',
    'annoline2': 'Neck',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.7388977558074,
     40.7708261928267,
     -73.7388977558074,
     40.7708261928267]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.155',
   'geometry': {'type': 'Point',
    'coordinates': [-73.7424982072733, 40.76684609790763]},
   'geometry_name': 'geom',
   'properties': {'name': 'Douglaston',
    'stacked': 1,
    'annoline1': 'Douglaston',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.7424982072733,
     40.76684609790763,
     -73.7424982072733,
     40.76684609790763]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.156',
   'geometry': {'type': 'Point',
    'coordinates': [-73.71548118999145, 40.74944079974332]},
   'geometry_name': 'geom',
   'properties': {'name': 'Glen Oaks',
    'stacked': 2,
    'annoline1': 'Glen',
    'annoline2': 'Oaks',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.71548118999145,
     40.74944079974332,
     -73.71548118999145,
     40.74944079974332]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.157',
   'geometry': {'type': 'Point',
    'coordinates': [-73.72012814826903, 40.72857318176675]},
   'geometry_name': 'geom',
   'properties': {'name': 'Bellerose',
    'stacked': 1,
    'annoline1': 'Bellerose',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.72012814826903,
     40.72857318176675,
     -73.72012814826903,
     40.72857318176675]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.158',
   'geometry': {'type': 'Point',
    'coordinates': [-73.82087764933566, 40.722578244228046]},
   'geometry_name': 'geom',
   'properties': {'name': 'Kew Gardens Hills',
    'stacked': 3,
    'annoline1': 'Kew',
    'annoline2': 'Gardens',
    'annoline3': 'Hills',
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.82087764933566,
     40.722578244228046,
     -73.82087764933566,
     40.722578244228046]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.159',
   'geometry': {'type': 'Point',
    'coordinates': [-73.78271337003264, 40.7343944653313]},
   'geometry_name': 'geom',
   'properties': {'name': 'Fresh Meadows',
    'stacked': 2,
    'annoline1': 'Fresh',
    'annoline2': 'Meadows',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.78271337003264,
     40.7343944653313,
     -73.78271337003264,
     40.7343944653313]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.160',
   'geometry': {'type': 'Point',
    'coordinates': [-73.81174822458634, 40.71093547252271]},
   'geometry_name': 'geom',
   'properties': {'name': 'Briarwood',
    'stacked': 1,
    'annoline1': 'Briarwood',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.81174822458634,
     40.71093547252271,
     -73.81174822458634,
     40.71093547252271]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.161',
   'geometry': {'type': 'Point',
    'coordinates': [-73.79690165888289, 40.70465736068717]},
   'geometry_name': 'geom',
   'properties': {'name': 'Jamaica Center',
    'stacked': 2,
    'annoline1': 'Jamaica',
    'annoline2': 'Center',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.79690165888289,
     40.70465736068717,
     -73.79690165888289,
     40.70465736068717]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.162',
   'geometry': {'type': 'Point',
    'coordinates': [-73.75494976234332, 40.74561857141855]},
   'geometry_name': 'geom',
   'properties': {'name': 'Oakland Gardens',
    'stacked': 2,
    'annoline1': 'Oakland',
    'annoline2': 'Gardens',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.75494976234332,
     40.74561857141855,
     -73.75494976234332,
     40.74561857141855]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.163',
   'geometry': {'type': 'Point',
    'coordinates': [-73.73871484578424, 40.718893092167356]},
   'geometry_name': 'geom',
   'properties': {'name': 'Queens Village',
    'stacked': 2,
    'annoline1': 'Queens',
    'annoline2': 'Village',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.73871484578424,
     40.718893092167356,
     -73.73871484578424,
     40.718893092167356]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.164',
   'geometry': {'type': 'Point',
    'coordinates': [-73.75925009335594, 40.71124344191904]},
   'geometry_name': 'geom',
   'properties': {'name': 'Hollis',
    'stacked': 1,
    'annoline1': 'Hollis',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.75925009335594,
     40.71124344191904,
     -73.75925009335594,
     40.71124344191904]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.165',
   'geometry': {'type': 'Point',
    'coordinates': [-73.7904261313554, 40.696911253789885]},
   'geometry_name': 'geom',
   'properties': {'name': 'South Jamaica',
    'stacked': 1,
    'annoline1': 'South Jamaica',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.7904261313554,
     40.696911253789885,
     -73.7904261313554,
     40.696911253789885]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.166',
   'geometry': {'type': 'Point',
    'coordinates': [-73.75867603727717, 40.69444538522359]},
   'geometry_name': 'geom',
   'properties': {'name': 'St. Albans',
    'stacked': 1,
    'annoline1': 'St. Albans',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.75867603727717,
     40.69444538522359,
     -73.75867603727717,
     40.69444538522359]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.167',
   'geometry': {'type': 'Point',
    'coordinates': [-73.77258787620906, 40.67521139591733]},
   'geometry_name': 'geom',
   'properties': {'name': 'Rochdale',
    'stacked': 1,
    'annoline1': 'Rochdale',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.77258787620906,
     40.67521139591733,
     -73.77258787620906,
     40.67521139591733]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.168',
   'geometry': {'type': 'Point',
    'coordinates': [-73.76042092682287, 40.666230490368584]},
   'geometry_name': 'geom',
   'properties': {'name': 'Springfield Gardens',
    'stacked': 2,
    'annoline1': 'Springfield',
    'annoline2': 'Gardens',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.76042092682287,
     40.666230490368584,
     -73.76042092682287,
     40.666230490368584]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.169',
   'geometry': {'type': 'Point',
    'coordinates': [-73.73526873708026, 40.692774639160845]},
   'geometry_name': 'geom',
   'properties': {'name': 'Cambria Heights',
    'stacked': 2,
    'annoline1': 'Cambria',
    'annoline2': 'Heights',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.73526873708026,
     40.692774639160845,
     -73.73526873708026,
     40.692774639160845]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.170',
   'geometry': {'type': 'Point',
    'coordinates': [-73.73526079428278, 40.659816433428084]},
   'geometry_name': 'geom',
   'properties': {'name': 'Rosedale',
    'stacked': 1,
    'annoline1': 'Rosedale',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.73526079428278,
     40.659816433428084,
     -73.73526079428278,
     40.659816433428084]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.171',
   'geometry': {'type': 'Point',
    'coordinates': [-73.75497968043872, 40.603134432500894]},
   'geometry_name': 'geom',
   'properties': {'name': 'Far Rockaway',
    'stacked': 2,
    'annoline1': 'Far Rockaway',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.75497968043872,
     40.603134432500894,
     -73.75497968043872,
     40.603134432500894]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.172',
   'geometry': {'type': 'Point',
    'coordinates': [-73.8200548911032, 40.60302658351238]},
   'geometry_name': 'geom',
   'properties': {'name': 'Broad Channel',
    'stacked': 2,
    'annoline1': 'Broad',
    'annoline2': 'Channel',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.8200548911032,
     40.60302658351238,
     -73.8200548911032,
     40.60302658351238]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.173',
   'geometry': {'type': 'Point',
    'coordinates': [-73.92551196994168, 40.55740128845452]},
   'geometry_name': 'geom',
   'properties': {'name': 'Breezy Point',
    'stacked': 2,
    'annoline1': 'Breezy',
    'annoline2': 'Point',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.92551196994168,
     40.55740128845452,
     -73.92551196994168,
     40.55740128845452]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.174',
   'geometry': {'type': 'Point',
    'coordinates': [-73.90228960391673, 40.775923015642896]},
   'geometry_name': 'geom',
   'properties': {'name': 'Steinway',
    'stacked': 1,
    'annoline1': 'Steinway',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.90228960391673,
     40.775923015642896,
     -73.90228960391673,
     40.775923015642896]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.175',
   'geometry': {'type': 'Point',
    'coordinates': [-73.80436451720988, 40.79278140360048]},
   'geometry_name': 'geom',
   'properties': {'name': 'Beechhurst',
    'stacked': 1,
    'annoline1': 'Beechhurst',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.80436451720988,
     40.79278140360048,
     -73.80436451720988,
     40.79278140360048]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.176',
   'geometry': {'type': 'Point',
    'coordinates': [-73.7768022262158, 40.782842806245554]},
   'geometry_name': 'geom',
   'properties': {'name': 'Bay Terrace',
    'stacked': 2,
    'annoline1': 'Bay',
    'annoline2': 'Terrace',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.7768022262158,
     40.782842806245554,
     -73.7768022262158,
     40.782842806245554]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.177',
   'geometry': {'type': 'Point',
    'coordinates': [-73.77613282391705, 40.595641807368494]},
   'geometry_name': 'geom',
   'properties': {'name': 'Edgemere',
    'stacked': 1,
    'annoline1': 'Edgemere',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.77613282391705,
     40.595641807368494,
     -73.77613282391705,
     40.595641807368494]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.178',
   'geometry': {'type': 'Point',
    'coordinates': [-73.79199233136943, 40.58914394372971]},
   'geometry_name': 'geom',
   'properties': {'name': 'Arverne',
    'stacked': 1,
    'annoline1': 'Arverne',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.79199233136943,
     40.58914394372971,
     -73.79199233136943,
     40.58914394372971]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.179',
   'geometry': {'type': 'Point',
    'coordinates': [-73.82236121088751, 40.582801696845586]},
   'geometry_name': 'geom',
   'properties': {'name': 'Rockaway Beach',
    'stacked': 2,
    'annoline1': 'Rockaway',
    'annoline2': 'Beach',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.82236121088751,
     40.582801696845586,
     -73.82236121088751,
     40.582801696845586]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.180',
   'geometry': {'type': 'Point',
    'coordinates': [-73.85754672410827, 40.572036730217015]},
   'geometry_name': 'geom',
   'properties': {'name': 'Neponsit',
    'stacked': 1,
    'annoline1': 'Neponsit',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.85754672410827,
     40.572036730217015,
     -73.85754672410827,
     40.572036730217015]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.181',
   'geometry': {'type': 'Point',
    'coordinates': [-73.81276269135866, 40.764126122614066]},
   'geometry_name': 'geom',
   'properties': {'name': 'Murray Hill',
    'stacked': 2,
    'annoline1': 'Murray',
    'annoline2': 'Hill',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.81276269135866,
     40.764126122614066,
     -73.81276269135866,
     40.764126122614066]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.182',
   'geometry': {'type': 'Point',
    'coordinates': [-73.70884705889246, 40.741378421945434]},
   'geometry_name': 'geom',
   'properties': {'name': 'Floral Park',
    'stacked': 1,
    'annoline1': 'Floral Park',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.70884705889246,
     40.741378421945434,
     -73.70884705889246,
     40.741378421945434]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.183',
   'geometry': {'type': 'Point',
    'coordinates': [-73.76714166714729, 40.7209572076444]},
   'geometry_name': 'geom',
   'properties': {'name': 'Holliswood',
    'stacked': 1,
    'annoline1': 'Holliswood',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.76714166714729,
     40.7209572076444,
     -73.76714166714729,
     40.7209572076444]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.184',
   'geometry': {'type': 'Point',
    'coordinates': [-73.7872269693666, 40.71680483014613]},
   'geometry_name': 'geom',
   'properties': {'name': 'Jamaica Estates',
    'stacked': 2,
    'annoline1': 'Jamaica',
    'annoline2': 'Estates',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.7872269693666,
     40.71680483014613,
     -73.7872269693666,
     40.71680483014613]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.185',
   'geometry': {'type': 'Point',
    'coordinates': [-73.82580915110559, 40.7445723092867]},
   'geometry_name': 'geom',
   'properties': {'name': 'Queensboro Hill',
    'stacked': 2,
    'annoline1': 'Queensboro',
    'annoline2': 'Hill',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.82580915110559,
     40.7445723092867,
     -73.82580915110559,
     40.7445723092867]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.186',
   'geometry': {'type': 'Point',
    'coordinates': [-73.79760300912672, 40.723824901829204]},
   'geometry_name': 'geom',
   'properties': {'name': 'Hillcrest',
    'stacked': 1,
    'annoline1': 'Hillcrest',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.79760300912672,
     40.723824901829204,
     -73.79760300912672,
     40.723824901829204]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.187',
   'geometry': {'type': 'Point',
    'coordinates': [-73.93157506072878, 40.761704526054146]},
   'geometry_name': 'geom',
   'properties': {'name': 'Ravenswood',
    'stacked': 1,
    'annoline1': 'Ravenswood',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.93157506072878,
     40.761704526054146,
     -73.93157506072878,
     40.761704526054146]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.188',
   'geometry': {'type': 'Point',
    'coordinates': [-73.84963782402441, 40.66391841925139]},
   'geometry_name': 'geom',
   'properties': {'name': 'Lindenwood',
    'stacked': 1,
    'annoline1': 'Lindenwood',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.84963782402441,
     40.66391841925139,
     -73.84963782402441,
     40.66391841925139]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.189',
   'geometry': {'type': 'Point',
    'coordinates': [-73.74025607989822, 40.66788389660247]},
   'geometry_name': 'geom',
   'properties': {'name': 'Laurelton',
    'stacked': 1,
    'annoline1': 'Laurelton',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.74025607989822,
     40.66788389660247,
     -73.74025607989822,
     40.66788389660247]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.190',
   'geometry': {'type': 'Point',
    'coordinates': [-73.8625247141374, 40.736074570830795]},
   'geometry_name': 'geom',
   'properties': {'name': 'Lefrak City',
    'stacked': 2,
    'annoline1': 'Lefrak',
    'annoline2': 'City',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.8625247141374,
     40.736074570830795,
     -73.8625247141374,
     40.736074570830795]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.191',
   'geometry': {'type': 'Point',
    'coordinates': [-73.8540175039252, 40.57615556543109]},
   'geometry_name': 'geom',
   'properties': {'name': 'Belle Harbor',
    'stacked': 1,
    'annoline1': 'Belle Harbor',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.8540175039252,
     40.57615556543109,
     -73.8540175039252,
     40.57615556543109]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.192',
   'geometry': {'type': 'Point',
    'coordinates': [-73.84153370226186, 40.58034295646131]},
   'geometry_name': 'geom',
   'properties': {'name': 'Rockaway Park',
    'stacked': 1,
    'annoline1': 'Rockaway Park',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.84153370226186,
     40.58034295646131,
     -73.84153370226186,
     40.58034295646131]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.193',
   'geometry': {'type': 'Point',
    'coordinates': [-73.79664750844047, 40.59771061565768]},
   'geometry_name': 'geom',
   'properties': {'name': 'Somerville',
    'stacked': 1,
    'annoline1': 'Somerville',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.79664750844047,
     40.59771061565768,
     -73.79664750844047,
     40.59771061565768]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.194',
   'geometry': {'type': 'Point',
    'coordinates': [-73.75175310731153, 40.66000322733613]},
   'geometry_name': 'geom',
   'properties': {'name': 'Brookville',
    'stacked': 1,
    'annoline1': 'Brookville',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.75175310731153,
     40.66000322733613,
     -73.75175310731153,
     40.66000322733613]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.195',
   'geometry': {'type': 'Point',
    'coordinates': [-73.73889198912481, 40.73301404027834]},
   'geometry_name': 'geom',
   'properties': {'name': 'Bellaire',
    'stacked': 1,
    'annoline1': 'Bellaire',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.73889198912481,
     40.73301404027834,
     -73.73889198912481,
     40.73301404027834]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.196',
   'geometry': {'type': 'Point',
    'coordinates': [-73.85751790676447, 40.7540709990489]},
   'geometry_name': 'geom',
   'properties': {'name': 'North Corona',
    'stacked': 2,
    'annoline1': 'North',
    'annoline2': 'Corona',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.85751790676447,
     40.7540709990489,
     -73.85751790676447,
     40.7540709990489]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.197',
   'geometry': {'type': 'Point',
    'coordinates': [-73.8410221123401, 40.7146110815117]},
   'geometry_name': 'geom',
   'properties': {'name': 'Forest Hills Gardens',
    'stacked': 3,
    'annoline1': 'Forest',
    'annoline2': 'Hills',
    'annoline3': 'Gardens',
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.8410221123401,
     40.7146110815117,
     -73.8410221123401,
     40.7146110815117]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.198',
   'geometry': {'type': 'Point',
    'coordinates': [-74.07935312512797, 40.6449815710044]},
   'geometry_name': 'geom',
   'properties': {'name': 'St. George',
    'stacked': 2,
    'annoline1': 'St.',
    'annoline2': 'George',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.07935312512797,
     40.6449815710044,
     -74.07935312512797,
     40.6449815710044]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.199',
   'geometry': {'type': 'Point',
    'coordinates': [-74.08701650516625, 40.64061455913511]},
   'geometry_name': 'geom',
   'properties': {'name': 'New Brighton',
    'stacked': 2,
    'annoline1': 'New',
    'annoline2': 'Brighton',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.08701650516625,
     40.64061455913511,
     -74.08701650516625,
     40.64061455913511]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.200',
   'geometry': {'type': 'Point',
    'coordinates': [-74.07790192660066, 40.62692762538176]},
   'geometry_name': 'geom',
   'properties': {'name': 'Stapleton',
    'stacked': 1,
    'annoline1': 'Stapleton',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.07790192660066,
     40.62692762538176,
     -74.07790192660066,
     40.62692762538176]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.201',
   'geometry': {'type': 'Point',
    'coordinates': [-74.06980526716141, 40.61530494652761]},
   'geometry_name': 'geom',
   'properties': {'name': 'Rosebank',
    'stacked': 1,
    'annoline1': 'Rosebank',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.06980526716141,
     40.61530494652761,
     -74.06980526716141,
     40.61530494652761]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.202',
   'geometry': {'type': 'Point',
    'coordinates': [-74.1071817826561, 40.63187892654607]},
   'geometry_name': 'geom',
   'properties': {'name': 'West Brighton',
    'stacked': 2,
    'annoline1': 'West',
    'annoline2': 'Brighton',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.1071817826561,
     40.63187892654607,
     -74.1071817826561,
     40.63187892654607]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.203',
   'geometry': {'type': 'Point',
    'coordinates': [-74.08724819983729, 40.624184791313006]},
   'geometry_name': 'geom',
   'properties': {'name': 'Grymes Hill',
    'stacked': 2,
    'annoline1': 'Grymes',
    'annoline2': 'Hill',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.08724819983729,
     40.624184791313006,
     -74.08724819983729,
     40.624184791313006]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.204',
   'geometry': {'type': 'Point',
    'coordinates': [-74.1113288180088, 40.59706851814673]},
   'geometry_name': 'geom',
   'properties': {'name': 'Todt Hill',
    'stacked': 2,
    'annoline1': 'Todt',
    'annoline2': 'Hill',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.1113288180088,
     40.59706851814673,
     -74.1113288180088,
     40.59706851814673]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.205',
   'geometry': {'type': 'Point',
    'coordinates': [-74.0795529253982, 40.58024741350956]},
   'geometry_name': 'geom',
   'properties': {'name': 'South Beach',
    'stacked': 2,
    'annoline1': 'South',
    'annoline2': 'Beach',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.0795529253982,
     40.58024741350956,
     -74.0795529253982,
     40.58024741350956]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.206',
   'geometry': {'type': 'Point',
    'coordinates': [-74.12943426797008, 40.63366930554365]},
   'geometry_name': 'geom',
   'properties': {'name': 'Port Richmond',
    'stacked': 2,
    'annoline1': 'Port',
    'annoline2': 'Richmond',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.12943426797008,
     40.63366930554365,
     -74.12943426797008,
     40.63366930554365]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.207',
   'geometry': {'type': 'Point',
    'coordinates': [-74.15008537046981, 40.632546390481124]},
   'geometry_name': 'geom',
   'properties': {'name': "Mariner's Harbor",
    'stacked': 2,
    'annoline1': "Mariner's",
    'annoline2': 'Harbor',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.15008537046981,
     40.632546390481124,
     -74.15008537046981,
     40.632546390481124]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.208',
   'geometry': {'type': 'Point',
    'coordinates': [-74.17464532993542, 40.63968297845542]},
   'geometry_name': 'geom',
   'properties': {'name': 'Port Ivory',
    'stacked': 2,
    'annoline1': 'Port',
    'annoline2': 'Ivory',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.17464532993542,
     40.63968297845542,
     -74.17464532993542,
     40.63968297845542]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.209',
   'geometry': {'type': 'Point',
    'coordinates': [-74.11918058534842, 40.61333593766742]},
   'geometry_name': 'geom',
   'properties': {'name': 'Castleton Corners',
    'stacked': 2,
    'annoline1': 'Castleton',
    'annoline2': 'Corners',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.11918058534842,
     40.61333593766742,
     -74.11918058534842,
     40.61333593766742]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.210',
   'geometry': {'type': 'Point',
    'coordinates': [-74.16496031329827, 40.594252379161695]},
   'geometry_name': 'geom',
   'properties': {'name': 'New Springville',
    'stacked': 2,
    'annoline1': 'New',
    'annoline2': 'Springville',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.16496031329827,
     40.594252379161695,
     -74.16496031329827,
     40.594252379161695]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.211',
   'geometry': {'type': 'Point',
    'coordinates': [-74.19073717538116, 40.58631375103281]},
   'geometry_name': 'geom',
   'properties': {'name': 'Travis',
    'stacked': 1,
    'annoline1': 'Travis',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.19073717538116,
     40.58631375103281,
     -74.19073717538116,
     40.58631375103281]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.212',
   'geometry': {'type': 'Point',
    'coordinates': [-74.1164794360638, 40.57257231820632]},
   'geometry_name': 'geom',
   'properties': {'name': 'New Dorp',
    'stacked': 2,
    'annoline1': 'New',
    'annoline2': 'Dorp',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.1164794360638,
     40.57257231820632,
     -74.1164794360638,
     40.57257231820632]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.213',
   'geometry': {'type': 'Point',
    'coordinates': [-74.12156593771896, 40.5584622432888]},
   'geometry_name': 'geom',
   'properties': {'name': 'Oakwood',
    'stacked': 1,
    'annoline1': 'Oakwood',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.12156593771896,
     40.5584622432888,
     -74.12156593771896,
     40.5584622432888]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.214',
   'geometry': {'type': 'Point',
    'coordinates': [-74.14932381490992, 40.549480228713605]},
   'geometry_name': 'geom',
   'properties': {'name': 'Great Kills',
    'stacked': 2,
    'annoline1': 'Great',
    'annoline2': 'Kills',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.14932381490992,
     40.549480228713605,
     -74.14932381490992,
     40.549480228713605]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.215',
   'geometry': {'type': 'Point',
    'coordinates': [-74.1643308041936, 40.542230747450745]},
   'geometry_name': 'geom',
   'properties': {'name': 'Eltingville',
    'stacked': 1,
    'annoline1': 'Eltingville',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.1643308041936,
     40.542230747450745,
     -74.1643308041936,
     40.542230747450745]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.216',
   'geometry': {'type': 'Point',
    'coordinates': [-74.17854866165878, 40.53811417474507]},
   'geometry_name': 'geom',
   'properties': {'name': 'Annadale',
    'stacked': 1,
    'annoline1': 'Annadale',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.17854866165878,
     40.53811417474507,
     -74.17854866165878,
     40.53811417474507]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.217',
   'geometry': {'type': 'Point',
    'coordinates': [-74.20524582480326, 40.541967622888755]},
   'geometry_name': 'geom',
   'properties': {'name': 'Woodrow',
    'stacked': 1,
    'annoline1': 'Woodrow',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.20524582480326,
     40.541967622888755,
     -74.20524582480326,
     40.541967622888755]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.218',
   'geometry': {'type': 'Point',
    'coordinates': [-74.24656934235283, 40.50533376115642]},
   'geometry_name': 'geom',
   'properties': {'name': 'Tottenville',
    'stacked': 1,
    'annoline1': 'Tottenville',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.24656934235283,
     40.50533376115642,
     -74.24656934235283,
     40.50533376115642]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.219',
   'geometry': {'type': 'Point',
    'coordinates': [-74.08055351790115, 40.637316067110326]},
   'geometry_name': 'geom',
   'properties': {'name': 'Tompkinsville',
    'stacked': 1,
    'annoline1': 'Tompkinsville',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.08055351790115,
     40.637316067110326,
     -74.08055351790115,
     40.637316067110326]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.220',
   'geometry': {'type': 'Point',
    'coordinates': [-74.09629029235458, 40.61919310792676]},
   'geometry_name': 'geom',
   'properties': {'name': 'Silver Lake',
    'stacked': 2,
    'annoline1': 'Silver',
    'annoline2': 'Lake',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.09629029235458,
     40.61919310792676,
     -74.09629029235458,
     40.61919310792676]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.221',
   'geometry': {'type': 'Point',
    'coordinates': [-74.0971255217853, 40.61276015756489]},
   'geometry_name': 'geom',
   'properties': {'name': 'Sunnyside',
    'stacked': 1,
    'annoline1': 'Sunnyside',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.0971255217853,
     40.61276015756489,
     -74.0971255217853,
     40.61276015756489]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.222',
   'geometry': {'type': 'Point',
    'coordinates': [-73.96101312466779, 40.643675183340974]},
   'geometry_name': 'geom',
   'properties': {'name': 'Ditmas Park',
    'stacked': 2,
    'annoline1': 'Ditmas',
    'annoline2': 'Park',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.96101312466779,
     40.643675183340974,
     -73.96101312466779,
     40.643675183340974]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.223',
   'geometry': {'type': 'Point',
    'coordinates': [-73.93718680559314, 40.66094656188111]},
   'geometry_name': 'geom',
   'properties': {'name': 'Wingate',
    'stacked': 1,
    'annoline1': 'Wingate',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.93718680559314,
     40.66094656188111,
     -73.93718680559314,
     40.66094656188111]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.224',
   'geometry': {'type': 'Point',
    'coordinates': [-73.92688212616955, 40.655572313280764]},
   'geometry_name': 'geom',
   'properties': {'name': 'Rugby',
    'stacked': 1,
    'annoline1': 'Rugby',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.92688212616955,
     40.655572313280764,
     -73.92688212616955,
     40.655572313280764]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.225',
   'geometry': {'type': 'Point',
    'coordinates': [-74.08015734936296, 40.60919044434558]},
   'geometry_name': 'geom',
   'properties': {'name': 'Park Hill',
    'stacked': 2,
    'annoline1': 'Park',
    'annoline2': 'Hill',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.08015734936296,
     40.60919044434558,
     -74.08015734936296,
     40.60919044434558]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.226',
   'geometry': {'type': 'Point',
    'coordinates': [-74.13304143951704, 40.62109047275409]},
   'geometry_name': 'geom',
   'properties': {'name': 'Westerleigh',
    'stacked': 1,
    'annoline1': 'Westerleigh',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.13304143951704,
     40.62109047275409,
     -74.13304143951704,
     40.62109047275409]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.227',
   'geometry': {'type': 'Point',
    'coordinates': [-74.15315246387762, 40.620171512231884]},
   'geometry_name': 'geom',
   'properties': {'name': 'Graniteville',
    'stacked': 1,
    'annoline1': 'Graniteville',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.15315246387762,
     40.620171512231884,
     -74.15315246387762,
     40.620171512231884]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.228',
   'geometry': {'type': 'Point',
    'coordinates': [-74.16510420241124, 40.63532509911492]},
   'geometry_name': 'geom',
   'properties': {'name': 'Arlington',
    'stacked': 1,
    'annoline1': 'Arlington',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.16510420241124,
     40.63532509911492,
     -74.16510420241124,
     40.63532509911492]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.229',
   'geometry': {'type': 'Point',
    'coordinates': [-74.06712363225574, 40.596312571276734]},
   'geometry_name': 'geom',
   'properties': {'name': 'Arrochar',
    'stacked': 1,
    'annoline1': 'Arrochar',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.06712363225574,
     40.596312571276734,
     -74.06712363225574,
     40.596312571276734]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.230',
   'geometry': {'type': 'Point',
    'coordinates': [-74.0766743627905, 40.59826835959991]},
   'geometry_name': 'geom',
   'properties': {'name': 'Grasmere',
    'stacked': 1,
    'annoline1': 'Grasmere',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.0766743627905,
     40.59826835959991,
     -74.0766743627905,
     40.59826835959991]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.231',
   'geometry': {'type': 'Point',
    'coordinates': [-74.08751118005578, 40.59632891379513]},
   'geometry_name': 'geom',
   'properties': {'name': 'Old Town',
    'stacked': 2,
    'annoline1': 'Old',
    'annoline2': 'Town',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.08751118005578,
     40.59632891379513,
     -74.08751118005578,
     40.59632891379513]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.232',
   'geometry': {'type': 'Point',
    'coordinates': [-74.09639905312521, 40.588672948199275]},
   'geometry_name': 'geom',
   'properties': {'name': 'Dongan Hills',
    'stacked': 2,
    'annoline1': 'Dongan',
    'annoline2': 'Hills',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.09639905312521,
     40.588672948199275,
     -74.09639905312521,
     40.588672948199275]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.233',
   'geometry': {'type': 'Point',
    'coordinates': [-74.09348266303591, 40.57352690574283]},
   'geometry_name': 'geom',
   'properties': {'name': 'Midland Beach',
    'stacked': 2,
    'annoline1': 'Midland',
    'annoline2': 'Beach',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.09348266303591,
     40.57352690574283,
     -74.09348266303591,
     40.57352690574283]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.234',
   'geometry': {'type': 'Point',
    'coordinates': [-74.10585598545434, 40.57621558711788]},
   'geometry_name': 'geom',
   'properties': {'name': 'Grant City',
    'stacked': 2,
    'annoline1': 'Grant',
    'annoline2': 'City',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.10585598545434,
     40.57621558711788,
     -74.10585598545434,
     40.57621558711788]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.235',
   'geometry': {'type': 'Point',
    'coordinates': [-74.10432707469124, 40.56425549307335]},
   'geometry_name': 'geom',
   'properties': {'name': 'New Dorp Beach',
    'stacked': 3,
    'annoline1': 'New',
    'annoline2': 'Dorp',
    'annoline3': 'Beach',
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.10432707469124,
     40.56425549307335,
     -74.10432707469124,
     40.56425549307335]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.236',
   'geometry': {'type': 'Point',
    'coordinates': [-74.13916622175768, 40.55398800858462]},
   'geometry_name': 'geom',
   'properties': {'name': 'Bay Terrace',
    'stacked': 2,
    'annoline1': 'Bay',
    'annoline2': 'Terrace',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.13916622175768,
     40.55398800858462,
     -74.13916622175768,
     40.55398800858462]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.237',
   'geometry': {'type': 'Point',
    'coordinates': [-74.19174105747814, 40.531911920489605]},
   'geometry_name': 'geom',
   'properties': {'name': 'Huguenot',
    'stacked': 1,
    'annoline1': 'Huguenot',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.19174105747814,
     40.531911920489605,
     -74.19174105747814,
     40.531911920489605]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.238',
   'geometry': {'type': 'Point',
    'coordinates': [-74.21983106616777, 40.524699376118136]},
   'geometry_name': 'geom',
   'properties': {'name': 'Pleasant Plains',
    'stacked': 2,
    'annoline1': 'Pleasant',
    'annoline2': 'Plains',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.21983106616777,
     40.524699376118136,
     -74.21983106616777,
     40.524699376118136]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.239',
   'geometry': {'type': 'Point',
    'coordinates': [-74.22950350260027, 40.50608165346305]},
   'geometry_name': 'geom',
   'properties': {'name': 'Butler Manor',
    'stacked': 2,
    'annoline1': 'Butler',
    'annoline2': 'Manor',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.22950350260027,
     40.50608165346305,
     -74.22950350260027,
     40.50608165346305]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.240',
   'geometry': {'type': 'Point',
    'coordinates': [-74.23215775896526, 40.53053148283314]},
   'geometry_name': 'geom',
   'properties': {'name': 'Charleston',
    'stacked': 1,
    'annoline1': 'Charleston',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.23215775896526,
     40.53053148283314,
     -74.23215775896526,
     40.53053148283314]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.241',
   'geometry': {'type': 'Point',
    'coordinates': [-74.21572851113952, 40.54940400650072]},
   'geometry_name': 'geom',
   'properties': {'name': 'Rossville',
    'stacked': 1,
    'annoline1': 'Rossville',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.21572851113952,
     40.54940400650072,
     -74.21572851113952,
     40.54940400650072]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.242',
   'geometry': {'type': 'Point',
    'coordinates': [-74.18588674583893, 40.54928582278321]},
   'geometry_name': 'geom',
   'properties': {'name': 'Arden Heights',
    'stacked': 2,
    'annoline1': 'Arden',
    'annoline2': 'Heights',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.18588674583893,
     40.54928582278321,
     -74.18588674583893,
     40.54928582278321]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.243',
   'geometry': {'type': 'Point',
    'coordinates': [-74.17079414786092, 40.555295236173194]},
   'geometry_name': 'geom',
   'properties': {'name': 'Greenridge',
    'stacked': 1,
    'annoline1': 'Greenridge',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.17079414786092,
     40.555295236173194,
     -74.17079414786092,
     40.555295236173194]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.244',
   'geometry': {'type': 'Point',
    'coordinates': [-74.15902208156601, 40.58913894875281]},
   'geometry_name': 'geom',
   'properties': {'name': 'Heartland Village',
    'stacked': 2,
    'annoline1': 'Heartland',
    'annoline2': 'Village',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.15902208156601,
     40.58913894875281,
     -74.15902208156601,
     40.58913894875281]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.245',
   'geometry': {'type': 'Point',
    'coordinates': [-74.1895604551969, 40.59472602746295]},
   'geometry_name': 'geom',
   'properties': {'name': 'Chelsea',
    'stacked': 1,
    'annoline1': 'Chelsea',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.1895604551969,
     40.59472602746295,
     -74.1895604551969,
     40.59472602746295]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.246',
   'geometry': {'type': 'Point',
    'coordinates': [-74.18725638381567, 40.60577868452358]},
   'geometry_name': 'geom',
   'properties': {'name': 'Bloomfield',
    'stacked': 1,
    'annoline1': 'Bloomfield',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.18725638381567,
     40.60577868452358,
     -74.18725638381567,
     40.60577868452358]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.247',
   'geometry': {'type': 'Point',
    'coordinates': [-74.15940948657122, 40.6095918004203]},
   'geometry_name': 'geom',
   'properties': {'name': 'Bulls Head',
    'stacked': 2,
    'annoline1': 'Bulls',
    'annoline2': 'Head',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.15940948657122,
     40.6095918004203,
     -74.15940948657122,
     40.6095918004203]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.248',
   'geometry': {'type': 'Point',
    'coordinates': [-73.95325646837112, 40.7826825671257]},
   'geometry_name': 'geom',
   'properties': {'name': 'Carnegie Hill',
    'stacked': 2,
    'annoline1': 'Carnegie',
    'annoline2': 'Hill',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.95325646837112,
     40.7826825671257,
     -73.95325646837112,
     40.7826825671257]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.249',
   'geometry': {'type': 'Point',
    'coordinates': [-73.98843368023597, 40.72325901885768]},
   'geometry_name': 'geom',
   'properties': {'name': 'Noho',
    'stacked': 1,
    'annoline1': 'Noho',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.98843368023597,
     40.72325901885768,
     -73.98843368023597,
     40.72325901885768]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.250',
   'geometry': {'type': 'Point',
    'coordinates': [-74.00541529873355, 40.71522892046282]},
   'geometry_name': 'geom',
   'properties': {'name': 'Civic Center',
    'stacked': 2,
    'annoline1': 'Civic',
    'annoline2': 'Center',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-74.00541529873355,
     40.71522892046282,
     -74.00541529873355,
     40.71522892046282]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.251',
   'geometry': {'type': 'Point',
    'coordinates': [-73.98871313285247, 40.7485096643122]},
   'geometry_name': 'geom',
   'properties': {'name': 'Midtown South',
    'stacked': 2,
    'annoline1': 'Midtown',
    'annoline2': 'South',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.98871313285247,
     40.7485096643122,
     -73.98871313285247,
     40.7485096643122]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.252',
   'geometry': {'type': 'Point',
    'coordinates': [-74.1340572986257, 40.56960594275505]},
   'geometry_name': 'geom',
   'properties': {'name': 'Richmond Town',
    'stacked': 2,
    'annoline1': 'Richmond',
    'annoline2': 'Town',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.1340572986257,
     40.56960594275505,
     -74.1340572986257,
     40.56960594275505]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.253',
   'geometry': {'type': 'Point',
    'coordinates': [-74.06667766061771, 40.60971934079284]},
   'geometry_name': 'geom',
   'properties': {'name': 'Shore Acres',
    'stacked': 2,
    'annoline1': 'Shore',
    'annoline2': 'Acres',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.06667766061771,
     40.60971934079284,
     -74.06667766061771,
     40.60971934079284]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.254',
   'geometry': {'type': 'Point',
    'coordinates': [-74.072642445484, 40.61917845202843]},
   'geometry_name': 'geom',
   'properties': {'name': 'Clifton',
    'stacked': 1,
    'annoline1': 'Clifton',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.072642445484,
     40.61917845202843,
     -74.072642445484,
     40.61917845202843]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.255',
   'geometry': {'type': 'Point',
    'coordinates': [-74.08402364740358, 40.6044731896879]},
   'geometry_name': 'geom',
   'properties': {'name': 'Concord',
    'stacked': 1,
    'annoline1': 'Concord',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.08402364740358,
     40.6044731896879,
     -74.08402364740358,
     40.6044731896879]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.256',
   'geometry': {'type': 'Point',
    'coordinates': [-74.09776206972522, 40.606794394801]},
   'geometry_name': 'geom',
   'properties': {'name': 'Emerson Hill',
    'stacked': 2,
    'annoline1': 'Emerson',
    'annoline2': 'Hill',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.09776206972522,
     40.606794394801,
     -74.09776206972522,
     40.606794394801]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.257',
   'geometry': {'type': 'Point',
    'coordinates': [-74.09805062373887, 40.63563000681151]},
   'geometry_name': 'geom',
   'properties': {'name': 'Randall Manor',
    'stacked': 2,
    'annoline1': 'Randall',
    'annoline2': 'Manor',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.09805062373887,
     40.63563000681151,
     -74.09805062373887,
     40.63563000681151]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.258',
   'geometry': {'type': 'Point',
    'coordinates': [-74.18622331749823, 40.63843283794795]},
   'geometry_name': 'geom',
   'properties': {'name': 'Howland Hook',
    'stacked': 2,
    'annoline1': 'Howland',
    'annoline2': 'Hook',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.18622331749823,
     40.63843283794795,
     -74.18622331749823,
     40.63843283794795]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.259',
   'geometry': {'type': 'Point',
    'coordinates': [-74.1418167896889, 40.630146741193826]},
   'geometry_name': 'geom',
   'properties': {'name': 'Elm Park',
    'stacked': 2,
    'annoline1': 'Elm',
    'annoline2': 'Park',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.1418167896889,
     40.630146741193826,
     -74.1418167896889,
     40.630146741193826]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.260',
   'geometry': {'type': 'Point',
    'coordinates': [-73.91665331978048, 40.652117451793494]},
   'geometry_name': 'geom',
   'properties': {'name': 'Remsen Village',
    'stacked': 2,
    'annoline1': 'Remsen',
    'annoline2': 'Village',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.91665331978048,
     40.652117451793494,
     -73.91665331978048,
     40.652117451793494]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.261',
   'geometry': {'type': 'Point',
    'coordinates': [-73.88511776379292, 40.6627442796966]},
   'geometry_name': 'geom',
   'properties': {'name': 'New Lots',
    'stacked': 2,
    'annoline1': 'New',
    'annoline2': 'Lots',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.88511776379292,
     40.6627442796966,
     -73.88511776379292,
     40.6627442796966]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.262',
   'geometry': {'type': 'Point',
    'coordinates': [-73.90233474295836, 40.63131755039667]},
   'geometry_name': 'geom',
   'properties': {'name': 'Paerdegat Basin',
    'stacked': 2,
    'annoline1': 'Paerdegat',
    'annoline2': 'Basin',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.90233474295836,
     40.63131755039667,
     -73.90233474295836,
     40.63131755039667]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.263',
   'geometry': {'type': 'Point',
    'coordinates': [-73.91515391550404, 40.61597423962336]},
   'geometry_name': 'geom',
   'properties': {'name': 'Mill Basin',
    'stacked': 2,
    'annoline1': 'Mill',
    'annoline2': 'Basin',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.91515391550404,
     40.61597423962336,
     -73.91515391550404,
     40.61597423962336]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.264',
   'geometry': {'type': 'Point',
    'coordinates': [-73.79646462081593, 40.71145964370482]},
   'geometry_name': 'geom',
   'properties': {'name': 'Jamaica Hills',
    'stacked': 2,
    'annoline1': 'Jamaica',
    'annoline2': 'Hills',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.79646462081593,
     40.71145964370482,
     -73.79646462081593,
     40.71145964370482]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.265',
   'geometry': {'type': 'Point',
    'coordinates': [-73.79671678028349, 40.73350025429757]},
   'geometry_name': 'geom',
   'properties': {'name': 'Utopia',
    'stacked': 1,
    'annoline1': 'Utopia',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.79671678028349,
     40.73350025429757,
     -73.79671678028349,
     40.73350025429757]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.266',
   'geometry': {'type': 'Point',
    'coordinates': [-73.80486120040537, 40.73493618075478]},
   'geometry_name': 'geom',
   'properties': {'name': 'Pomonok',
    'stacked': 1,
    'annoline1': 'Pomonok',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.80486120040537,
     40.73493618075478,
     -73.80486120040537,
     40.73493618075478]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.267',
   'geometry': {'type': 'Point',
    'coordinates': [-73.89467996270574, 40.7703173929982]},
   'geometry_name': 'geom',
   'properties': {'name': 'Astoria Heights',
    'stacked': 2,
    'annoline1': 'Astoria',
    'annoline2': 'Heights',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.89467996270574,
     40.7703173929982,
     -73.89467996270574,
     40.7703173929982]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.268',
   'geometry': {'type': 'Point',
    'coordinates': [-73.90119903387667, 40.83142834161548]},
   'geometry_name': 'geom',
   'properties': {'name': 'Claremont Village',
    'stacked': 2,
    'annoline1': 'Claremont',
    'annoline2': 'Village',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.90119903387667,
     40.83142834161548,
     -73.90119903387667,
     40.83142834161548]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.269',
   'geometry': {'type': 'Point',
    'coordinates': [-73.91584652759009, 40.824780490842905]},
   'geometry_name': 'geom',
   'properties': {'name': 'Concourse Village',
    'stacked': 2,
    'annoline1': 'Concourse',
    'annoline2': 'Village',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.91584652759009,
     40.824780490842905,
     -73.91584652759009,
     40.824780490842905]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.270',
   'geometry': {'type': 'Point',
    'coordinates': [-73.91655551964419, 40.84382617671654]},
   'geometry_name': 'geom',
   'properties': {'name': 'Mount Eden',
    'stacked': 2,
    'annoline1': 'Mount',
    'annoline2': 'Eden',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.91655551964419,
     40.84382617671654,
     -73.91655551964419,
     40.84382617671654]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.271',
   'geometry': {'type': 'Point',
    'coordinates': [-73.90829930881988, 40.84884160724665]},
   'geometry_name': 'geom',
   'properties': {'name': 'Mount Hope',
    'stacked': 2,
    'annoline1': 'Mount',
    'annoline2': 'Hope',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.90829930881988,
     40.84884160724665,
     -73.90829930881988,
     40.84884160724665]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.272',
   'geometry': {'type': 'Point',
    'coordinates': [-73.96355614094303, 40.76028033131374]},
   'geometry_name': 'geom',
   'properties': {'name': 'Sutton Place',
    'stacked': 2,
    'annoline1': 'Sutton',
    'annoline2': 'Place',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.96355614094303,
     40.76028033131374,
     -73.96355614094303,
     40.76028033131374]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.273',
   'geometry': {'type': 'Point',
    'coordinates': [-73.95386782130745, 40.743414090073536]},
   'geometry_name': 'geom',
   'properties': {'name': 'Hunters Point',
    'stacked': 2,
    'annoline1': 'Hunters',
    'annoline2': 'Point',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.95386782130745,
     40.743414090073536,
     -73.95386782130745,
     40.743414090073536]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.274',
   'geometry': {'type': 'Point',
    'coordinates': [-73.96770824581834, 40.75204236950722]},
   'geometry_name': 'geom',
   'properties': {'name': 'Turtle Bay',
    'stacked': 2,
    'annoline1': 'Turtle',
    'annoline2': 'Bay',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.96770824581834,
     40.75204236950722,
     -73.96770824581834,
     40.75204236950722]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.275',
   'geometry': {'type': 'Point',
    'coordinates': [-73.97121928722265, 40.746917410740195]},
   'geometry_name': 'geom',
   'properties': {'name': 'Tudor City',
    'stacked': 2,
    'annoline1': 'Tudor',
    'annoline2': 'City',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.97121928722265,
     40.746917410740195,
     -73.97121928722265,
     40.746917410740195]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.276',
   'geometry': {'type': 'Point',
    'coordinates': [-73.97405170469203, 40.73099955477061]},
   'geometry_name': 'geom',
   'properties': {'name': 'Stuyvesant Town',
    'stacked': 2,
    'annoline1': 'Stuyvesant',
    'annoline2': 'Town',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.97405170469203,
     40.73099955477061,
     -73.97405170469203,
     40.73099955477061]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.277',
   'geometry': {'type': 'Point',
    'coordinates': [-73.9909471052826, 40.739673047638426]},
   'geometry_name': 'geom',
   'properties': {'name': 'Flatiron',
    'stacked': 1,
    'annoline1': 'Flatiron',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-73.9909471052826,
     40.739673047638426,
     -73.9909471052826,
     40.739673047638426]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.278',
   'geometry': {'type': 'Point',
    'coordinates': [-73.91819286431682, 40.74565180608076]},
   'geometry_name': 'geom',
   'properties': {'name': 'Sunnyside Gardens',
    'stacked': 2,
    'annoline1': 'Sunnyside',
    'annoline2': 'Gardens',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.91819286431682,
     40.74565180608076,
     -73.91819286431682,
     40.74565180608076]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.279',
   'geometry': {'type': 'Point',
    'coordinates': [-73.93244235260178, 40.73725071694497]},
   'geometry_name': 'geom',
   'properties': {'name': 'Blissville',
    'stacked': 1,
    'annoline1': 'Blissville',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.93244235260178,
     40.73725071694497,
     -73.93244235260178,
     40.73725071694497]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.280',
   'geometry': {'type': 'Point',
    'coordinates': [-73.99550751888415, 40.70328109093014]},
   'geometry_name': 'geom',
   'properties': {'name': 'Fulton Ferry',
    'stacked': 2,
    'annoline1': 'Fulton',
    'annoline2': 'Ferry',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.99550751888415,
     40.70328109093014,
     -73.99550751888415,
     40.70328109093014]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.281',
   'geometry': {'type': 'Point',
    'coordinates': [-73.98111603592393, 40.70332149882874]},
   'geometry_name': 'geom',
   'properties': {'name': 'Vinegar Hill',
    'stacked': 2,
    'annoline1': 'Vinegar',
    'annoline2': 'Hill',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.98111603592393,
     40.70332149882874,
     -73.98111603592393,
     40.70332149882874]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.282',
   'geometry': {'type': 'Point',
    'coordinates': [-73.93053108817338, 40.67503986503237]},
   'geometry_name': 'geom',
   'properties': {'name': 'Weeksville',
    'stacked': 1,
    'annoline1': 'Weeksville',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.93053108817338,
     40.67503986503237,
     -73.93053108817338,
     40.67503986503237]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.283',
   'geometry': {'type': 'Point',
    'coordinates': [-73.90331684852599, 40.67786104769531]},
   'geometry_name': 'geom',
   'properties': {'name': 'Broadway Junction',
    'stacked': 2,
    'annoline1': 'Broadway',
    'annoline2': 'Junction',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.90331684852599,
     40.67786104769531,
     -73.90331684852599,
     40.67786104769531]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.284',
   'geometry': {'type': 'Point',
    'coordinates': [-73.9887528074504, 40.70317632822692]},
   'geometry_name': 'geom',
   'properties': {'name': 'Dumbo',
    'stacked': 1,
    'annoline1': 'Dumbo',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.9887528074504,
     40.70317632822692,
     -73.9887528074504,
     40.70317632822692]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.285',
   'geometry': {'type': 'Point',
    'coordinates': [-74.12059399718001, 40.60180957631444]},
   'geometry_name': 'geom',
   'properties': {'name': 'Manor Heights',
    'stacked': 2,
    'annoline1': 'Manor',
    'annoline2': 'Heights',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.12059399718001,
     40.60180957631444,
     -74.12059399718001,
     40.60180957631444]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.286',
   'geometry': {'type': 'Point',
    'coordinates': [-74.13208447484298, 40.60370692627371]},
   'geometry_name': 'geom',
   'properties': {'name': 'Willowbrook',
    'stacked': 1,
    'annoline1': 'Willowbrook',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.13208447484298,
     40.60370692627371,
     -74.13208447484298,
     40.60370692627371]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.287',
   'geometry': {'type': 'Point',
    'coordinates': [-74.21776636068567, 40.541139922091766]},
   'geometry_name': 'geom',
   'properties': {'name': 'Sandy Ground',
    'stacked': 2,
    'annoline1': 'Sandy',
    'annoline2': 'Ground',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.21776636068567,
     40.541139922091766,
     -74.21776636068567,
     40.541139922091766]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.288',
   'geometry': {'type': 'Point',
    'coordinates': [-74.12727240604946, 40.579118742961214]},
   'geometry_name': 'geom',
   'properties': {'name': 'Egbertville',
    'stacked': 1,
    'annoline1': 'Egbertville',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.12727240604946,
     40.579118742961214,
     -74.12727240604946,
     40.579118742961214]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.289',
   'geometry': {'type': 'Point',
    'coordinates': [-73.89213760232822, 40.56737588957032]},
   'geometry_name': 'geom',
   'properties': {'name': 'Roxbury',
    'stacked': 1,
    'annoline1': 'Roxbury',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.89213760232822,
     40.56737588957032,
     -73.89213760232822,
     40.56737588957032]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.290',
   'geometry': {'type': 'Point',
    'coordinates': [-73.95918459428702, 40.598525095137255]},
   'geometry_name': 'geom',
   'properties': {'name': 'Homecrest',
    'stacked': 1,
    'annoline1': 'Homecrest',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.95918459428702,
     40.598525095137255,
     -73.95918459428702,
     40.598525095137255]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.291',
   'geometry': {'type': 'Point',
    'coordinates': [-73.88114319200604, 40.716414511158185]},
   'geometry_name': 'geom',
   'properties': {'name': 'Middle Village',
    'stacked': 2,
    'annoline1': 'Middle',
    'annoline2': 'Village',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.88114319200604,
     40.716414511158185,
     -73.88114319200604,
     40.716414511158185]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.292',
   'geometry': {'type': 'Point',
    'coordinates': [-74.20152556457658, 40.52626406734812]},
   'geometry_name': 'geom',
   'properties': {'name': "Prince's Bay",
    'stacked': 2,
    'annoline1': "Prince's",
    'annoline2': 'Bay',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.20152556457658,
     40.52626406734812,
     -74.20152556457658,
     40.52626406734812]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.293',
   'geometry': {'type': 'Point',
    'coordinates': [-74.13792663771568, 40.57650629379489]},
   'geometry_name': 'geom',
   'properties': {'name': 'Lighthouse Hill',
    'stacked': 2,
    'annoline1': 'Lighthouse',
    'annoline2': 'Hill',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.13792663771568,
     40.57650629379489,
     -74.13792663771568,
     40.57650629379489]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.294',
   'geometry': {'type': 'Point',
    'coordinates': [-74.22957080626941, 40.51954145748909]},
   'geometry_name': 'geom',
   'properties': {'name': 'Richmond Valley',
    'stacked': 2,
    'annoline1': 'Richmond',
    'annoline2': 'Valley',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.22957080626941,
     40.51954145748909,
     -74.22957080626941,
     40.51954145748909]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.295',
   'geometry': {'type': 'Point',
    'coordinates': [-73.82667757138641, 40.79060155670148]},
   'geometry_name': 'geom',
   'properties': {'name': 'Malba',
    'stacked': 1,
    'annoline1': 'Malba',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.82667757138641,
     40.79060155670148,
     -73.82667757138641,
     40.79060155670148]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.296',
   'geometry': {'type': 'Point',
    'coordinates': [-73.890345709872, 40.6819989345173]},
   'geometry_name': 'geom',
   'properties': {'name': 'Highland Park',
    'stacked': 2,
    'annoline1': 'Highland',
    'annoline2': 'Park',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.890345709872,
     40.6819989345173,
     -73.890345709872,
     40.6819989345173]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.297',
   'geometry': {'type': 'Point',
    'coordinates': [-73.94841515328893, 40.60937770113766]},
   'geometry_name': 'geom',
   'properties': {'name': 'Madison',
    'stacked': 1,
    'annoline1': 'Madison',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.94841515328893,
     40.60937770113766,
     -73.94841515328893,
     40.60937770113766]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.298',
   'geometry': {'type': 'Point',
    'coordinates': [-73.86172577555115, 40.85272297633017]},
   'geometry_name': 'geom',
   'properties': {'name': 'Bronxdale',
    'stacked': 1,
    'annoline1': 'Bronxdale',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.86172577555115,
     40.85272297633017,
     -73.86172577555115,
     40.85272297633017]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.299',
   'geometry': {'type': 'Point',
    'coordinates': [-73.85931863221647, 40.86578787802982]},
   'geometry_name': 'geom',
   'properties': {'name': 'Allerton',
    'stacked': 1,
    'annoline1': 'Allerton',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.85931863221647,
     40.86578787802982,
     -73.85931863221647,
     40.86578787802982]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.300',
   'geometry': {'type': 'Point',
    'coordinates': [-73.90152264513144, 40.8703923914147]},
   'geometry_name': 'geom',
   'properties': {'name': 'Kingsbridge Heights',
    'stacked': 2,
    'annoline1': 'Kingsbridge',
    'annoline2': 'Heights',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Bronx',
    'bbox': [-73.90152264513144,
     40.8703923914147,
     -73.90152264513144,
     40.8703923914147]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.301',
   'geometry': {'type': 'Point',
    'coordinates': [-73.94817709920184, 40.64692606658579]},
   'geometry_name': 'geom',
   'properties': {'name': 'Erasmus',
    'stacked': 1,
    'annoline1': 'Erasmus',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Brooklyn',
    'bbox': [-73.94817709920184,
     40.64692606658579,
     -73.94817709920184,
     40.64692606658579]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.302',
   'geometry': {'type': 'Point',
    'coordinates': [-74.00011136202637, 40.75665808227519]},
   'geometry_name': 'geom',
   'properties': {'name': 'Hudson Yards',
    'stacked': 2,
    'annoline1': 'Hudson',
    'annoline2': 'Yards',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Manhattan',
    'bbox': [-74.00011136202637,
     40.75665808227519,
     -74.00011136202637,
     40.75665808227519]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.303',
   'geometry': {'type': 'Point',
    'coordinates': [-73.80553002968718, 40.58733774018741]},
   'geometry_name': 'geom',
   'properties': {'name': 'Hammels',
    'stacked': 1,
    'annoline1': 'Hammels',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.80553002968718,
     40.58733774018741,
     -73.80553002968718,
     40.58733774018741]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.304',
   'geometry': {'type': 'Point',
    'coordinates': [-73.76596781445627, 40.611321691283834]},
   'geometry_name': 'geom',
   'properties': {'name': 'Bayswater',
    'stacked': 1,
    'annoline1': 'Bayswater',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.76596781445627,
     40.611321691283834,
     -73.76596781445627,
     40.611321691283834]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.305',
   'geometry': {'type': 'Point',
    'coordinates': [-73.94563070334091, 40.756091297094706]},
   'geometry_name': 'geom',
   'properties': {'name': 'Queensbridge',
    'stacked': 1,
    'annoline1': 'Queensbridge',
    'annoline2': None,
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Queens',
    'bbox': [-73.94563070334091,
     40.756091297094706,
     -73.94563070334091,
     40.756091297094706]}},
  {'type': 'Feature',
   'id': 'nyu_2451_34572.306',
   'geometry': {'type': 'Point',
    'coordinates': [-74.08173992211962, 40.61731079252983]},
   'geometry_name': 'geom',
   'properties': {'name': 'Fox Hills',
    'stacked': 2,
    'annoline1': 'Fox',
    'annoline2': 'Hills',
    'annoline3': None,
    'annoangle': 0.0,
    'borough': 'Staten Island',
    'bbox': [-74.08173992211962,
     40.61731079252983,
     -74.08173992211962,
     40.61731079252983]}}],
 'crs': {'type': 'name', 'properties': {'name': 'urn:ogc:def:crs:EPSG::4326'}},
 'bbox': [-74.2492599487305,
  40.5033187866211,
  -73.7061614990234,
  40.9105606079102]}

Notice how all the relevant data is in the features key, which is basically a list of the neighborhoods. So, let's define a new variable that includes this data.

In [7]:
neighborhoods_data = newyork_data['features']

Let's take a look at the first item in this list.

In [8]:
neighborhoods_data[0]
Out[8]:
{'type': 'Feature',
 'id': 'nyu_2451_34572.1',
 'geometry': {'type': 'Point',
  'coordinates': [-73.84720052054902, 40.89470517661]},
 'geometry_name': 'geom',
 'properties': {'name': 'Wakefield',
  'stacked': 1,
  'annoline1': 'Wakefield',
  'annoline2': None,
  'annoline3': None,
  'annoangle': 0.0,
  'borough': 'Bronx',
  'bbox': [-73.84720052054902,
   40.89470517661,
   -73.84720052054902,
   40.89470517661]}}

Tranform the data into a pandas dataframe

Tranform the data into a pandas dataframe The next task is essentially transforming this data of nested Python dictionaries into a pandas dataframe. So let's start by creating an empty dataframe.

In [9]:
# define the dataframe columns
column_names = ['Borough', 'Neighborhood', 'Latitude', 'Longitude'] 

# instantiate the dataframe
neighborhoods = pd.DataFrame(columns=column_names)

Take a look at the empty dataframe to confirm that the columns are as intended.

In [10]:
neighborhoods
Out[10]:
Borough Neighborhood Latitude Longitude

Then let's loop through the data and fill the dataframe one row at a time.

In [11]:
for data in neighborhoods_data:
    borough = neighborhood_name = data['properties']['borough'] 
    neighborhood_name = data['properties']['name']
        
    neighborhood_latlon = data['geometry']['coordinates']
    neighborhood_lat = neighborhood_latlon[1]
    neighborhood_lon = neighborhood_latlon[0]
    
    neighborhoods = neighborhoods.append({'Borough': borough,
                                          'Neighborhood': neighborhood_name,
                                          'Latitude': neighborhood_lat,
                                          'Longitude': neighborhood_lon}, ignore_index=True)

Quickly examine the resulting dataframe.

In [12]:
neighborhoods.head()
Out[12]:
Borough Neighborhood Latitude Longitude
0 Bronx Wakefield 40.894705 -73.847201
1 Bronx Co-op City 40.874294 -73.829939
2 Bronx Eastchester 40.887556 -73.827806
3 Bronx Fieldston 40.895437 -73.905643
4 Bronx Riverdale 40.890834 -73.912585

And make sure that the dataset has all 5 boroughs and 306 neighborhoods

In [13]:
print('The dataframe has {} boroughs and {} neighborhoods.'.format(
        len(neighborhoods['Borough'].unique()),
        neighborhoods.shape[0]
    )
)
The dataframe has 5 boroughs and 306 neighborhoods.

Use geopy library to get the latitude and longitude values of New York City.

In order to define an instance of the geocoder, we need to define a user_agent. We will name our agent ny_explorer, as shown below.

In [14]:
address = 'New York City, NY'

geolocator = Nominatim(user_agent="ny_explorer")
location = geolocator.geocode(address)
latitude = location.latitude
longitude = location.longitude
print('The geograpical coordinate of New York City are {}, {}.'.format(latitude, longitude))
The geograpical coordinate of New York City are 40.7127281, -74.0060152.

Create a map of New York with neighborhoods superimposed on top.

In [15]:
# create map of New York using latitude and longitude values
map_newyork = folium.Map(location=[latitude, longitude], zoom_start=10)

# add markers to map
for lat, lng, borough, neighborhood in zip(neighborhoods['Latitude'], neighborhoods['Longitude'], neighborhoods['Borough'], neighborhoods['Neighborhood']):
    label = '{}, {}'.format(neighborhood, borough)
    label = folium.Popup(label, parse_html=True)
    folium.CircleMarker(
        [lat, lng],
        radius=5,
        popup=label,
        color='blue',
        fill=True,
        fill_color='#3186cc',
        fill_opacity=0.7,
        parse_html=False).add_to(map_newyork)  
    
map_newyork
Out[15]:

Folium is a great visualization library. Feel free to zoom into the above map, and click on each circle mark to reveal the name of the neighborhood and its respective borough.

Next, we are going to start utilizing the Foursquare API to explore the neighborhoods and segment them.

In [16]:
CLIENT_ID = 'XDSVHHZ0OH2OITHZSB5MJSEHSUVR5J3CYY5EOHOQTV550IQ1' # your Foursquare ID
CLIENT_SECRET = '5MNXPTBQ4GVTH0KMT0H0UKX00KYCEDLTI0XLT5BKJGME4AO3' # your Foursquare Secret
VERSION = '20180605' # Foursquare API version

print('Your credentails:')
print('CLIENT_ID: ' + CLIENT_ID)
print('CLIENT_SECRET:' + CLIENT_SECRET)
Your credentails:
CLIENT_ID: XDSVHHZ0OH2OITHZSB5MJSEHSUVR5J3CYY5EOHOQTV550IQ1
CLIENT_SECRET:5MNXPTBQ4GVTH0KMT0H0UKX00KYCEDLTI0XLT5BKJGME4AO3

Let's explore the first neighborhood in our dataframe.

lets get the neighbourhood name

In [17]:
neighborhoods.loc[0, 'Neighborhood']
Out[17]:
'Wakefield'

Get neignborhoods by value

lets get the coordinates of the neibourghood

In [18]:
neighborhood_latitude = neighborhoods.loc[0, 'Latitude'] # neighborhood latitude value
neighborhood_longitude = neighborhoods.loc[0, 'Longitude'] # neighborhood longitude value

neighborhood_name = neighborhoods.loc[0, 'Neighborhood'] # neighborhood name

print('Latitude and longitude values of {} are {}, {}.'.format(neighborhood_name, 
                                                               neighborhood_latitude, 
                                                               neighborhood_longitude))
Latitude and longitude values of Wakefield are 40.89470517661, -73.84720052054902.

Now, let's get the top 100 venues that are in Wakefield within a radius of 500 meters.

In [19]:
LIMIT = 100 # limit of number of venues returned by Foursquare API
radius = 500 # define radius

url = 'https://api.foursquare.com/v2/venues/explore?&client_id={}&client_secret={}&v={}&ll={},{}&radius={}&limit={}'.format(
    CLIENT_ID, 
    CLIENT_SECRET, 
    VERSION, 
    neighborhood_latitude, 
    neighborhood_longitude, 
    radius, 
    LIMIT)
url # display URL
Out[19]:
'https://api.foursquare.com/v2/venues/explore?&client_id=XDSVHHZ0OH2OITHZSB5MJSEHSUVR5J3CYY5EOHOQTV550IQ1&client_secret=5MNXPTBQ4GVTH0KMT0H0UKX00KYCEDLTI0XLT5BKJGME4AO3&v=20180605&ll=40.89470517661,-73.84720052054902&radius=500&limit=100'

Send the GET request and examine the resutls

In [20]:
results = requests.get(url).json()
results
Out[20]:
{'meta': {'code': 200, 'requestId': '5e08dddf60ba08001bf98633'},
 'response': {'suggestedFilters': {'header': 'Tap to show:',
   'filters': [{'name': 'Open now', 'key': 'openNow'}]},
  'headerLocation': 'Wakefield',
  'headerFullLocation': 'Wakefield, Bronx',
  'headerLocationGranularity': 'neighborhood',
  'totalResults': 8,
  'suggestedBounds': {'ne': {'lat': 40.899205181110005,
    'lng': -73.84125857127495},
   'sw': {'lat': 40.89020517211, 'lng': -73.8531424698231}},
  'groups': [{'type': 'Recommended Places',
    'name': 'recommended',
    'items': [{'reasons': {'count': 0,
       'items': [{'summary': 'This spot is popular',
         'type': 'general',
         'reasonName': 'globalInteractionReason'}]},
      'venue': {'id': '4c537892fd2ea593cb077a28',
       'name': 'Lollipops Gelato',
       'location': {'address': '4120 Baychester Ave',
        'crossStreet': 'Edenwald & Bussing Ave',
        'lat': 40.894123150205274,
        'lng': -73.84589162362325,
        'labeledLatLngs': [{'label': 'display',
          'lat': 40.894123150205274,
          'lng': -73.84589162362325}],
        'distance': 127,
        'postalCode': '10466',
        'cc': 'US',
        'city': 'Bronx',
        'state': 'NY',
        'country': 'United States',
        'formattedAddress': ['4120 Baychester Ave (Edenwald & Bussing Ave)',
         'Bronx, NY 10466',
         'United States']},
       'categories': [{'id': '4bf58dd8d48988d1d0941735',
         'name': 'Dessert Shop',
         'pluralName': 'Dessert Shops',
         'shortName': 'Desserts',
         'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/dessert_',
          'suffix': '.png'},
         'primary': True}],
       'photos': {'count': 0, 'groups': []}},
      'referralId': 'e-0-4c537892fd2ea593cb077a28-0'},
     {'reasons': {'count': 0,
       'items': [{'summary': 'This spot is popular',
         'type': 'general',
         'reasonName': 'globalInteractionReason'}]},
      'venue': {'id': '4d6af9426107f04dedeb297a',
       'name': 'Rite Aid',
       'location': {'address': '4232 Baychester Ave',
        'lat': 40.896649,
        'lng': -73.8448461,
        'labeledLatLngs': [{'label': 'display',
          'lat': 40.896649,
          'lng': -73.8448461}],
        'distance': 293,
        'postalCode': '10466',
        'cc': 'US',
        'city': 'Bronx',
        'state': 'NY',
        'country': 'United States',
        'formattedAddress': ['4232 Baychester Ave',
         'Bronx, NY 10466',
         'United States']},
       'categories': [{'id': '4bf58dd8d48988d10f951735',
         'name': 'Pharmacy',
         'pluralName': 'Pharmacies',
         'shortName': 'Pharmacy',
         'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/shops/pharmacy_',
          'suffix': '.png'},
         'primary': True}],
       'photos': {'count': 0, 'groups': []}},
      'referralId': 'e-0-4d6af9426107f04dedeb297a-1'},
     {'reasons': {'count': 0,
       'items': [{'summary': 'This spot is popular',
         'type': 'general',
         'reasonName': 'globalInteractionReason'}]},
      'venue': {'id': '4c783cef3badb1f7e4244b54',
       'name': 'Carvel Ice Cream',
       'location': {'address': '1006 E 233rd St',
        'lat': 40.890486685759605,
        'lng': -73.84856772568665,
        'labeledLatLngs': [{'label': 'display',
          'lat': 40.890486685759605,
          'lng': -73.84856772568665}],
        'distance': 483,
        'postalCode': '10466',
        'cc': 'US',
        'city': 'Bronx',
        'state': 'NY',
        'country': 'United States',
        'formattedAddress': ['1006 E 233rd St',
         'Bronx, NY 10466',
         'United States']},
       'categories': [{'id': '4bf58dd8d48988d1c9941735',
         'name': 'Ice Cream Shop',
         'pluralName': 'Ice Cream Shops',
         'shortName': 'Ice Cream',
         'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/icecream_',
          'suffix': '.png'},
         'primary': True}],
       'photos': {'count': 0, 'groups': []}},
      'referralId': 'e-0-4c783cef3badb1f7e4244b54-2'},
     {'reasons': {'count': 0,
       'items': [{'summary': 'This spot is popular',
         'type': 'general',
         'reasonName': 'globalInteractionReason'}]},
      'venue': {'id': '4c81a91c51ada1cd87741510',
       'name': 'Shell',
       'location': {'address': '836 E 233rd St',
        'lat': 40.894187118166535,
        'lng': -73.84586195733382,
        'labeledLatLngs': [{'label': 'display',
          'lat': 40.894187118166535,
          'lng': -73.84586195733382}],
        'distance': 126,
        'postalCode': '10466',
        'cc': 'US',
        'city': 'Bronx',
        'state': 'NY',
        'country': 'United States',
        'formattedAddress': ['836 E 233rd St',
         'Bronx, NY 10466',
         'United States']},
       'categories': [{'id': '4bf58dd8d48988d113951735',
         'name': 'Gas Station',
         'pluralName': 'Gas Stations',
         'shortName': 'Gas Station',
         'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/shops/gas_',
          'suffix': '.png'},
         'primary': True}],
       'photos': {'count': 0, 'groups': []}},
      'referralId': 'e-0-4c81a91c51ada1cd87741510-3'},
     {'reasons': {'count': 0,
       'items': [{'summary': 'This spot is popular',
         'type': 'general',
         'reasonName': 'globalInteractionReason'}]},
      'venue': {'id': '4c25c212f1272d7f836385c5',
       'name': "Dunkin'",
       'location': {'address': '980 E 233rd St',
        'crossStreet': 'Paulding Ave',
        'lat': 40.8904587811365,
        'lng': -73.84908886747644,
        'labeledLatLngs': [{'label': 'display',
          'lat': 40.8904587811365,
          'lng': -73.84908886747644}],
        'distance': 498,
        'postalCode': '10466',
        'cc': 'US',
        'city': 'Bronx',
        'state': 'NY',
        'country': 'United States',
        'formattedAddress': ['980 E 233rd St (Paulding Ave)',
         'Bronx, NY 10466',
         'United States']},
       'categories': [{'id': '4bf58dd8d48988d148941735',
         'name': 'Donut Shop',
         'pluralName': 'Donut Shops',
         'shortName': 'Donuts',
         'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/donuts_',
          'suffix': '.png'},
         'primary': True}],
       'delivery': {'id': '1163688',
        'url': 'https://www.seamless.com/menu/dunkin-980-e-233rd-st-bronx/1163688?affiliate=1131&utm_source=foursquare-affiliate-network&utm_medium=affiliate&utm_campaign=1131&utm_content=1163688',
        'provider': {'name': 'seamless',
         'icon': {'prefix': 'https://fastly.4sqi.net/img/general/cap/',
          'sizes': [40, 50],
          'name': '/delivery_provider_seamless_20180129.png'}}},
       'photos': {'count': 0, 'groups': []}},
      'referralId': 'e-0-4c25c212f1272d7f836385c5-4'},
     {'reasons': {'count': 0,
       'items': [{'summary': 'This spot is popular',
         'type': 'general',
         'reasonName': 'globalInteractionReason'}]},
      'venue': {'id': '4d33665fb6093704b80001e0',
       'name': 'SUBWAY',
       'location': {'address': '980 E 233rd St',
        'lat': 40.89065631618457,
        'lng': -73.84919159087512,
        'labeledLatLngs': [{'label': 'display',
          'lat': 40.89065631618457,
          'lng': -73.84919159087512}],
        'distance': 480,
        'postalCode': '10466',
        'cc': 'US',
        'city': 'Bronx',
        'state': 'NY',
        'country': 'United States',
        'formattedAddress': ['980 E 233rd St',
         'Bronx, NY 10466',
         'United States']},
       'categories': [{'id': '4bf58dd8d48988d1c5941735',
         'name': 'Sandwich Place',
         'pluralName': 'Sandwich Places',
         'shortName': 'Sandwiches',
         'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/deli_',
          'suffix': '.png'},
         'primary': True}],
       'delivery': {'id': '293568',
        'url': 'https://www.seamless.com/menu/subway-980-e-233rd-st-bronx/293568?affiliate=1131&utm_source=foursquare-affiliate-network&utm_medium=affiliate&utm_campaign=1131&utm_content=293568',
        'provider': {'name': 'seamless',
         'icon': {'prefix': 'https://fastly.4sqi.net/img/general/cap/',
          'sizes': [40, 50],
          'name': '/delivery_provider_seamless_20180129.png'}}},
       'photos': {'count': 0, 'groups': []}},
      'referralId': 'e-0-4d33665fb6093704b80001e0-5'},
     {'reasons': {'count': 0,
       'items': [{'summary': 'This spot is popular',
         'type': 'general',
         'reasonName': 'globalInteractionReason'}]},
      'venue': {'id': '508af256e4b0578944c87392',
       'name': 'Cooler Runnings Jamaican Restaurant Inc',
       'location': {'address': '1802 Nereid Ave',
        'crossStreet': 'Wickham',
        'lat': 40.898083,
        'lng': -73.850259,
        'labeledLatLngs': [{'label': 'display',
          'lat': 40.898083,
          'lng': -73.850259}],
        'distance': 455,
        'postalCode': '10466',
        'cc': 'US',
        'city': 'Bronx',
        'state': 'NY',
        'country': 'United States',
        'formattedAddress': ['1802 Nereid Ave (Wickham)',
         'Bronx, NY 10466',
         'United States']},
       'categories': [{'id': '4bf58dd8d48988d144941735',
         'name': 'Caribbean Restaurant',
         'pluralName': 'Caribbean Restaurants',
         'shortName': 'Caribbean',
         'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/caribbean_',
          'suffix': '.png'},
         'primary': True}],
       'photos': {'count': 0, 'groups': []}},
      'referralId': 'e-0-508af256e4b0578944c87392-6'},
     {'reasons': {'count': 0,
       'items': [{'summary': 'This spot is popular',
         'type': 'general',
         'reasonName': 'globalInteractionReason'}]},
      'venue': {'id': '5681717c498e9b9cf4d8c187',
       'name': 'Koss Quick Wash',
       'location': {'address': '951 E 233rd St',
        'crossStreet': 'Edenwald Avenue',
        'lat': 40.891281,
        'lng': -73.84990400000001,
        'labeledLatLngs': [{'label': 'display',
          'lat': 40.891281,
          'lng': -73.84990400000001}],
        'distance': 443,
        'postalCode': '10466',
        'cc': 'US',
        'city': 'Bronx',
        'state': 'NY',
        'country': 'United States',
        'formattedAddress': ['951 E 233rd St (Edenwald Avenue)',
         'Bronx, NY 10466',
         'United States']},
       'categories': [{'id': '52f2ab2ebcbc57f1066b8b33',
         'name': 'Laundromat',
         'pluralName': 'Laundromats',
         'shortName': 'Laundromat',
         'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/shops/laundry_',
          'suffix': '.png'},
         'primary': True}],
       'photos': {'count': 0, 'groups': []}},
      'referralId': 'e-0-5681717c498e9b9cf4d8c187-7'}]}]}}
In [21]:
# function that extracts the category of the venue
def get_category_type(row):
    try:
        categories_list = row['categories']
    except:
        categories_list = row['venue.categories']
        
    if len(categories_list) == 0:
        return None
    else:
        return categories_list[0]['name']

Now we are ready to clean the json and structure it into a pandas dataframe.

In [22]:
venues = results['response']['groups'][0]['items']
    
nearby_venues = json_normalize(venues) # flatten JSON

# filter columns
filtered_columns = ['venue.name', 'venue.categories', 'venue.location.lat', 'venue.location.lng']
nearby_venues =nearby_venues.loc[:, filtered_columns]

# filter the category for each row
nearby_venues['venue.categories'] = nearby_venues.apply(get_category_type, axis=1)

# clean columns
nearby_venues.columns = [col.split(".")[-1] for col in nearby_venues.columns]

nearby_venues.head()
Out[22]:
name categories lat lng
0 Lollipops Gelato Dessert Shop 40.894123 -73.845892
1 Rite Aid Pharmacy 40.896649 -73.844846
2 Carvel Ice Cream Ice Cream Shop 40.890487 -73.848568
3 Shell Gas Station 40.894187 -73.845862
4 Dunkin' Donut Shop 40.890459 -73.849089

And how many venues were returned by Foursquare?

In [23]:
print('{} venues were returned by Foursquare.'.format(nearby_venues.shape[0]))
8 venues were returned by Foursquare.

Explore Neighborhoods in newyork

Explore Neighborhoods in newyork

Let's create a function to repeat the same process to all the neighborhoods in New york

In [24]:
def getNearbyVenues(names, latitudes, longitudes, radius=500):
    
    venues_list=[]
    for name, lat, lng in zip(names, latitudes, longitudes):
        print(name)
            
        # create the API request URL
        url = 'https://api.foursquare.com/v2/venues/explore?&client_id={}&client_secret={}&v={}&ll={},{}&radius={}&limit={}'.format(
            CLIENT_ID, 
            CLIENT_SECRET, 
            VERSION, 
            lat, 
            lng, 
            radius, 
            LIMIT)
            
        # make the GET request
        results = requests.get(url).json()["response"]['groups'][0]['items']
        
        # return only relevant information for each nearby venue
        venues_list.append([(
            name, 
            lat, 
            lng, 
            v['venue']['name'], 
            v['venue']['location']['lat'], 
            v['venue']['location']['lng'],  
            v['venue']['categories'][0]['name']) for v in results])

    nearby_venues = pd.DataFrame([item for venue_list in venues_list for item in venue_list])
    nearby_venues.columns = ['Neighborhood', 
                  'Neighborhood Latitude', 
                  'Neighborhood Longitude', 
                  'Venue', 
                  'Venue Latitude', 
                  'Venue Longitude', 
                  'Venue Category']
    
    return(nearby_venues)

Now write the code to run the above function on each neighborhood and create a new dataframe called New york_venues.

In [26]:
# type your answer here

newyork_venues = getNearbyVenues(names=neighborhoods['Neighborhood'],
                                   latitudes=neighborhoods['Latitude'],
                                   longitudes=neighborhoods['Longitude']
                                  )
Wakefield
Co-op City
Eastchester
Fieldston
Riverdale
Kingsbridge
Marble Hill
Woodlawn
Norwood
Williamsbridge
Baychester
Pelham Parkway
City Island
Bedford Park
University Heights
Morris Heights
Fordham
East Tremont
West Farms
High  Bridge
Melrose
Mott Haven
Port Morris
Longwood
Hunts Point
Morrisania
Soundview
Clason Point
Throgs Neck
Country Club
Parkchester
Westchester Square
Van Nest
Morris Park
Belmont
Spuyten Duyvil
North Riverdale
Pelham Bay
Schuylerville
Edgewater Park
Castle Hill
Olinville
Pelham Gardens
Concourse
Unionport
Edenwald
Bay Ridge
Bensonhurst
Sunset Park
Greenpoint
Gravesend
Brighton Beach
Sheepshead Bay
Manhattan Terrace
Flatbush
Crown Heights
East Flatbush
Kensington
Windsor Terrace
Prospect Heights
Brownsville
Williamsburg
Bushwick
Bedford Stuyvesant
Brooklyn Heights
Cobble Hill
Carroll Gardens
Red Hook
Gowanus
Fort Greene
Park Slope
Cypress Hills
East New York
Starrett City
Canarsie
Flatlands
Mill Island
Manhattan Beach
Coney Island
Bath Beach
Borough Park
Dyker Heights
Gerritsen Beach
Marine Park
Clinton Hill
Sea Gate
Downtown
Boerum Hill
Prospect Lefferts Gardens
Ocean Hill
City Line
Bergen Beach
Midwood
Prospect Park South
Georgetown
East Williamsburg
North Side
South Side
Ocean Parkway
Fort Hamilton
Chinatown
Washington Heights
Inwood
Hamilton Heights
Manhattanville
Central Harlem
East Harlem
Upper East Side
Yorkville
Lenox Hill
Roosevelt Island
Upper West Side
Lincoln Square
Clinton
Midtown
Murray Hill
Chelsea
Greenwich Village
East Village
Lower East Side
Tribeca
Little Italy
Soho
West Village
Manhattan Valley
Morningside Heights
Gramercy
Battery Park City
Financial District
Astoria
Woodside
Jackson Heights
Elmhurst
Howard Beach
Corona
Forest Hills
Kew Gardens
Richmond Hill
Flushing
Long Island City
Sunnyside
East Elmhurst
Maspeth
Ridgewood
Glendale
Rego Park
Woodhaven
Ozone Park
South Ozone Park
College Point
Whitestone
Bayside
Auburndale
Little Neck
Douglaston
Glen Oaks
Bellerose
Kew Gardens Hills
Fresh Meadows
Briarwood
Jamaica Center
Oakland Gardens
Queens Village
Hollis
South Jamaica
St. Albans
Rochdale
Springfield Gardens
Cambria Heights
Rosedale
Far Rockaway
Broad Channel
Breezy Point
Steinway
Beechhurst
Bay Terrace
Edgemere
Arverne
Rockaway Beach
Neponsit
Murray Hill
Floral Park
Holliswood
Jamaica Estates
Queensboro Hill
Hillcrest
Ravenswood
Lindenwood
Laurelton
Lefrak City
Belle Harbor
Rockaway Park
Somerville
Brookville
Bellaire
North Corona
Forest Hills Gardens
St. George
New Brighton
Stapleton
Rosebank
West Brighton
Grymes Hill
Todt Hill
South Beach
Port Richmond
Mariner's Harbor
Port Ivory
Castleton Corners
New Springville
Travis
New Dorp
Oakwood
Great Kills
Eltingville
Annadale
Woodrow
Tottenville
Tompkinsville
Silver Lake
Sunnyside
Ditmas Park
Wingate
Rugby
Park Hill
Westerleigh
Graniteville
Arlington
Arrochar
Grasmere
Old Town
Dongan Hills
Midland Beach
Grant City
New Dorp Beach
Bay Terrace
Huguenot
Pleasant Plains
Butler Manor
Charleston
Rossville
Arden Heights
Greenridge
Heartland Village
Chelsea
Bloomfield
Bulls Head
Carnegie Hill
Noho
Civic Center
Midtown South
Richmond Town
Shore Acres
Clifton
Concord
Emerson Hill
Randall Manor
Howland Hook
Elm Park
Remsen Village
New Lots
Paerdegat Basin
Mill Basin
Jamaica Hills
Utopia
Pomonok
Astoria Heights
Claremont Village
Concourse Village
Mount Eden
Mount Hope
Sutton Place
Hunters Point
Turtle Bay
Tudor City
Stuyvesant Town
Flatiron
Sunnyside Gardens
Blissville
Fulton Ferry
Vinegar Hill
Weeksville
Broadway Junction
Dumbo
Manor Heights
Willowbrook
Sandy Ground
Egbertville
Roxbury
Homecrest
Middle Village
Prince's Bay
Lighthouse Hill
Richmond Valley
Malba
Highland Park
Madison
Bronxdale
Allerton
Kingsbridge Heights
Erasmus
Hudson Yards
Hammels
Bayswater
Queensbridge
Fox Hills

Now Let's check the size of the resulting dataframe

In [27]:
print(newyork_venues.shape)
newyork_venues.head()
(10288, 7)
Out[27]:
Neighborhood Neighborhood Latitude Neighborhood Longitude Venue Venue Latitude Venue Longitude Venue Category
0 Wakefield 40.894705 -73.847201 Lollipops Gelato 40.894123 -73.845892 Dessert Shop
1 Wakefield 40.894705 -73.847201 Rite Aid 40.896649 -73.844846 Pharmacy
2 Wakefield 40.894705 -73.847201 Carvel Ice Cream 40.890487 -73.848568 Ice Cream Shop
3 Wakefield 40.894705 -73.847201 Shell 40.894187 -73.845862 Gas Station
4 Wakefield 40.894705 -73.847201 Dunkin' 40.890459 -73.849089 Donut Shop
In [28]:
newyork_venues.groupby('Neighborhood').count()
Out[28]:
Neighborhood Latitude Neighborhood Longitude Venue Venue Latitude Venue Longitude Venue Category
Neighborhood
Allerton 29 29 29 29 29 29
Annadale 13 13 13 13 13 13
Arden Heights 5 5 5 5 5 5
Arlington 4 4 4 4 4 4
Arrochar 20 20 20 20 20 20
Arverne 18 18 18 18 18 18
Astoria 100 100 100 100 100 100
Astoria Heights 13 13 13 13 13 13
Auburndale 18 18 18 18 18 18
Bath Beach 48 48 48 48 48 48
Battery Park City 93 93 93 93 93 93
Bay Ridge 85 85 85 85 85 85
Bay Terrace 47 47 47 47 47 47
Baychester 22 22 22 22 22 22
Bayside 73 73 73 73 73 73
Bayswater 2 2 2 2 2 2
Bedford Park 34 34 34 34 34 34
Bedford Stuyvesant 25 25 25 25 25 25
Beechhurst 15 15 15 15 15 15
Bellaire 12 12 12 12 12 12
Belle Harbor 17 17 17 17 17 17
Bellerose 22 22 22 22 22 22
Belmont 98 98 98 98 98 98
Bensonhurst 28 28 28 28 28 28
Bergen Beach 6 6 6 6 6 6
Blissville 19 19 19 19 19 19
Bloomfield 5 5 5 5 5 5
Boerum Hill 91 91 91 91 91 91
Borough Park 24 24 24 24 24 24
Breezy Point 5 5 5 5 5 5
Briarwood 8 8 8 8 8 8
Brighton Beach 45 45 45 45 45 45
Broad Channel 5 5 5 5 5 5
Broadway Junction 14 14 14 14 14 14
Bronxdale 12 12 12 12 12 12
Brooklyn Heights 100 100 100 100 100 100
Brookville 1 1 1 1 1 1
Brownsville 23 23 23 23 23 23
Bulls Head 40 40 40 40 40 40
Bushwick 75 75 75 75 75 75
Butler Manor 6 6 6 6 6 6
Cambria Heights 11 11 11 11 11 11
Canarsie 5 5 5 5 5 5
Carnegie Hill 100 100 100 100 100 100
Carroll Gardens 100 100 100 100 100 100
Castle Hill 9 9 9 9 9 9
Castleton Corners 14 14 14 14 14 14
Central Harlem 43 43 43 43 43 43
Charleston 31 31 31 31 31 31
Chelsea 108 108 108 108 108 108
Chinatown 100 100 100 100 100 100
City Island 25 25 25 25 25 25
City Line 35 35 35 35 35 35
Civic Center 100 100 100 100 100 100
Claremont Village 23 23 23 23 23 23
Clason Point 10 10 10 10 10 10
Clifton 21 21 21 21 21 21
Clinton 100 100 100 100 100 100
Clinton Hill 92 92 92 92 92 92
Co-op City 17 17 17 17 17 17
Cobble Hill 98 98 98 98 98 98
College Point 42 42 42 42 42 42
Concord 9 9 9 9 9 9
Concourse 24 24 24 24 24 24
Concourse Village 36 36 36 36 36 36
Coney Island 14 14 14 14 14 14
Corona 18 18 18 18 18 18
Country Club 7 7 7 7 7 7
Crown Heights 21 21 21 21 21 21
Cypress Hills 28 28 28 28 28 28
Ditmas Park 50 50 50 50 50 50
Dongan Hills 25 25 25 25 25 25
Douglaston 20 20 20 20 20 20
Downtown 100 100 100 100 100 100
Dumbo 79 79 79 79 79 79
Dyker Heights 9 9 9 9 9 9
East Elmhurst 9 9 9 9 9 9
East Flatbush 12 12 12 12 12 12
East Harlem 39 39 39 39 39 39
East New York 16 16 16 16 16 16
East Tremont 19 19 19 19 19 19
East Village 100 100 100 100 100 100
East Williamsburg 68 68 68 68 68 68
Eastchester 21 21 21 21 21 21
Edenwald 6 6 6 6 6 6
Edgemere 14 14 14 14 14 14
Edgewater Park 21 21 21 21 21 21
Egbertville 5 5 5 5 5 5
Elm Park 9 9 9 9 9 9
Elmhurst 34 34 34 34 34 34
Eltingville 35 35 35 35 35 35
Erasmus 23 23 23 23 23 23
Far Rockaway 35 35 35 35 35 35
Fieldston 3 3 3 3 3 3
Financial District 100 100 100 100 100 100
Flatbush 20 20 20 20 20 20
Flatiron 100 100 100 100 100 100
Flatlands 19 19 19 19 19 19
Floral Park 7 7 7 7 7 7
Flushing 62 62 62 62 62 62
Fordham 84 84 84 84 84 84
Forest Hills 38 38 38 38 38 38
Forest Hills Gardens 19 19 19 19 19 19
Fort Greene 71 71 71 71 71 71
Fort Hamilton 71 71 71 71 71 71
Fox Hills 7 7 7 7 7 7
Fresh Meadows 14 14 14 14 14 14
Fulton Ferry 59 59 59 59 59 59
Georgetown 30 30 30 30 30 30
Gerritsen Beach 19 19 19 19 19 19
Glen Oaks 20 20 20 20 20 20
Glendale 6 6 6 6 6 6
Gowanus 64 64 64 64 64 64
Gramercy 100 100 100 100 100 100
Graniteville 3 3 3 3 3 3
Grant City 27 27 27 27 27 27
Grasmere 21 21 21 21 21 21
Gravesend 29 29 29 29 29 29
Great Kills 23 23 23 23 23 23
Greenpoint 100 100 100 100 100 100
Greenridge 5 5 5 5 5 5
Greenwich Village 100 100 100 100 100 100
Grymes Hill 2 2 2 2 2 2
Hamilton Heights 60 60 60 60 60 60
Hammels 18 18 18 18 18 18
Heartland Village 10 10 10 10 10 10
High Bridge 32 32 32 32 32 32
Highland Park 17 17 17 17 17 17
Hillcrest 19 19 19 19 19 19
Hollis 18 18 18 18 18 18
Holliswood 4 4 4 4 4 4
Homecrest 40 40 40 40 40 40
Howard Beach 39 39 39 39 39 39
Hudson Yards 80 80 80 80 80 80
Huguenot 9 9 9 9 9 9
Hunters Point 74 74 74 74 74 74
Hunts Point 12 12 12 12 12 12
Inwood 59 59 59 59 59 59
Jackson Heights 84 84 84 84 84 84
Jamaica Center 47 47 47 47 47 47
Jamaica Estates 3 3 3 3 3 3
Jamaica Hills 23 23 23 23 23 23
Kensington 37 37 37 37 37 37
Kew Gardens 47 47 47 47 47 47
Kew Gardens Hills 20 20 20 20 20 20
Kingsbridge 65 65 65 65 65 65
Kingsbridge Heights 35 35 35 35 35 35
Laurelton 5 5 5 5 5 5
Lefrak City 25 25 25 25 25 25
Lenox Hill 100 100 100 100 100 100
Lighthouse Hill 5 5 5 5 5 5
Lincoln Square 100 100 100 100 100 100
Lindenwood 13 13 13 13 13 13
Little Italy 100 100 100 100 100 100
Little Neck 54 54 54 54 54 54
Long Island City 71 71 71 71 71 71
Longwood 6 6 6 6 6 6
Lower East Side 55 55 55 55 55 55
Madison 12 12 12 12 12 12
Malba 2 2 2 2 2 2
Manhattan Beach 9 9 9 9 9 9
Manhattan Terrace 24 24 24 24 24 24
Manhattan Valley 54 54 54 54 54 54
Manhattanville 43 43 43 43 43 43
Manor Heights 11 11 11 11 11 11
Marble Hill 25 25 25 25 25 25
Marine Park 9 9 9 9 9 9
Mariner's Harbor 7 7 7 7 7 7
Maspeth 31 31 31 31 31 31
Melrose 25 25 25 25 25 25
Middle Village 16 16 16 16 16 16
Midland Beach 14 14 14 14 14 14
Midtown 100 100 100 100 100 100
Midtown South 100 100 100 100 100 100
Midwood 13 13 13 13 13 13
Mill Basin 37 37 37 37 37 37
Mill Island 1 1 1 1 1 1
Morningside Heights 42 42 42 42 42 42
Morris Heights 9 9 9 9 9 9
Morris Park 21 21 21 21 21 21
Morrisania 24 24 24 24 24 24
Mott Haven 19 19 19 19 19 19
Mount Eden 38 38 38 38 38 38
Mount Hope 11 11 11 11 11 11
Murray Hill 147 147 147 147 147 147
Neponsit 4 4 4 4 4 4
New Brighton 11 11 11 11 11 11
New Dorp 28 28 28 28 28 28
New Dorp Beach 12 12 12 12 12 12
New Lots 20 20 20 20 20 20
New Springville 22 22 22 22 22 22
Noho 100 100 100 100 100 100
North Corona 24 24 24 24 24 24
North Riverdale 22 22 22 22 22 22
North Side 100 100 100 100 100 100
Norwood 30 30 30 30 30 30
Oakland Gardens 24 24 24 24 24 24
Oakwood 4 4 4 4 4 4
Ocean Hill 30 30 30 30 30 30
Ocean Parkway 24 24 24 24 24 24
Old Town 20 20 20 20 20 20
Olinville 10 10 10 10 10 10
Ozone Park 35 35 35 35 35 35
Paerdegat Basin 3 3 3 3 3 3
Park Hill 7 7 7 7 7 7
Park Slope 70 70 70 70 70 70
Parkchester 35 35 35 35 35 35
Pelham Bay 40 40 40 40 40 40
Pelham Gardens 21 21 21 21 21 21
Pelham Parkway 23 23 23 23 23 23
Pleasant Plains 14 14 14 14 14 14
Pomonok 11 11 11 11 11 11
Port Ivory 1 1 1 1 1 1
Port Morris 14 14 14 14 14 14
Port Richmond 4 4 4 4 4 4
Prince's Bay 11 11 11 11 11 11
Prospect Heights 77 77 77 77 77 77
Prospect Lefferts Gardens 48 48 48 48 48 48
Prospect Park South 50 50 50 50 50 50
Queens Village 14 14 14 14 14 14
Queensboro Hill 25 25 25 25 25 25
Queensbridge 16 16 16 16 16 16
Randall Manor 5 5 5 5 5 5
Ravenswood 26 26 26 26 26 26
Red Hook 49 49 49 49 49 49
Rego Park 42 42 42 42 42 42
Remsen Village 17 17 17 17 17 17
Richmond Hill 26 26 26 26 26 26
Richmond Town 5 5 5 5 5 5
Richmond Valley 12 12 12 12 12 12
Ridgewood 37 37 37 37 37 37
Riverdale 11 11 11 11 11 11
Rochdale 17 17 17 17 17 17
Rockaway Beach 51 51 51 51 51 51
Rockaway Park 24 24 24 24 24 24
Roosevelt Island 30 30 30 30 30 30
Rosebank 25 25 25 25 25 25
Rosedale 15 15 15 15 15 15
Rossville 16 16 16 16 16 16
Roxbury 7 7 7 7 7 7
Rugby 18 18 18 18 18 18
Sandy Ground 10 10 10 10 10 10
Schuylerville 21 21 21 21 21 21
Sea Gate 6 6 6 6 6 6
Sheepshead Bay 23 23 23 23 23 23
Shore Acres 25 25 25 25 25 25
Silver Lake 3 3 3 3 3 3
Soho 100 100 100 100 100 100
Somerville 1 1 1 1 1 1
Soundview 17 17 17 17 17 17
South Beach 7 7 7 7 7 7
South Jamaica 7 7 7 7 7 7
South Ozone Park 14 14 14 14 14 14
South Side 100 100 100 100 100 100
Springfield Gardens 18 18 18 18 18 18
Spuyten Duyvil 12 12 12 12 12 12
St. Albans 16 16 16 16 16 16
St. George 35 35 35 35 35 35
Stapleton 34 34 34 34 34 34
Starrett City 12 12 12 12 12 12
Steinway 22 22 22 22 22 22
Stuyvesant Town 20 20 20 20 20 20
Sunnyside 46 46 46 46 46 46
Sunnyside Gardens 100 100 100 100 100 100
Sunset Park 35 35 35 35 35 35
Sutton Place 100 100 100 100 100 100
Throgs Neck 10 10 10 10 10 10
Todt Hill 1 1 1 1 1 1
Tompkinsville 28 28 28 28 28 28
Tottenville 8 8 8 8 8 8
Travis 17 17 17 17 17 17
Tribeca 100 100 100 100 100 100
Tudor City 81 81 81 81 81 81
Turtle Bay 100 100 100 100 100 100
Unionport 23 23 23 23 23 23
University Heights 19 19 19 19 19 19
Upper East Side 100 100 100 100 100 100
Upper West Side 100 100 100 100 100 100
Utopia 15 15 15 15 15 15
Van Nest 20 20 20 20 20 20
Vinegar Hill 29 29 29 29 29 29
Wakefield 8 8 8 8 8 8
Washington Heights 88 88 88 88 88 88
Weeksville 19 19 19 19 19 19
West Brighton 40 40 40 40 40 40
West Farms 21 21 21 21 21 21
West Village 100 100 100 100 100 100
Westchester Square 31 31 31 31 31 31
Westerleigh 2 2 2 2 2 2
Whitestone 4 4 4 4 4 4
Williamsbridge 4 4 4 4 4 4
Williamsburg 34 34 34 34 34 34
Willowbrook 8 8 8 8 8 8
Windsor Terrace 27 27 27 27 27 27
Wingate 17 17 17 17 17 17
Woodhaven 26 26 26 26 26 26
Woodlawn 24 24 24 24 24 24
Woodrow 20 20 20 20 20 20
Woodside 80 80 80 80 80 80
Yorkville 100 100 100 100 100 100
In [29]:
print('There are {} uniques categories.'.format(len(newyork_venues['Venue Category'].unique())))
There are 429 uniques categories.
In [30]:
# one hot encoding
newyork_onehot = pd.get_dummies(newyork_venues[['Venue Category']], prefix="", prefix_sep="")

# add neighborhood column back to dataframe
newyork_onehot['Neighborhood'] = newyork_venues['Neighborhood'] 

# move neighborhood column to the first column
fixed_columns = [newyork_onehot.columns[-1]] + list(newyork_onehot.columns[:-1])
newyork_onehot = newyork_onehot[fixed_columns]

newyork_onehot.tail()
Out[30]:
Yoga Studio Accessories Store Adult Boutique Afghan Restaurant African Restaurant Airport Terminal American Restaurant Antique Shop Arcade Arepa Restaurant Argentinian Restaurant Art Gallery Art Museum Arts & Crafts Store Arts & Entertainment Asian Restaurant Athletics & Sports Auditorium Australian Restaurant Austrian Restaurant Auto Garage Automotive Shop BBQ Joint Baby Store Bagel Shop Bakery Bank Bar Baseball Field Baseball Stadium Basketball Court Bath House Beach Beach Bar Bed & Breakfast Beer Bar Beer Garden Beer Store Big Box Store Bike Rental / Bike Share Bike Shop Bike Trail Bistro Board Shop Boat or Ferry Bookstore Boutique Bowling Alley Boxing Gym Brazilian Restaurant Breakfast Spot Brewery Bridal Shop Bridge Bubble Tea Shop Buffet Building Burger Joint Burrito Place Bus Line Bus Station Bus Stop Business Service Butcher Cafeteria Café Cajun / Creole Restaurant Cambodian Restaurant Camera Store Campground Candy Store Cantonese Restaurant Caribbean Restaurant Caucasian Restaurant Cha Chaan Teng Check Cashing Service Cheese Shop Chinese Restaurant Chocolate Shop Christmas Market Church Circus Climbing Gym Clothing Store Club House Cocktail Bar Coffee Shop College Academic Building College Arts Building College Basketball Court College Bookstore College Cafeteria College Theater Colombian Restaurant Comedy Club Comfort Food Restaurant Comic Shop Community Center Concert Hall Construction & Landscaping Convenience Store Cooking School Cosmetics Shop Coworking Space Creperie Cuban Restaurant Cultural Center Cupcake Shop Cycle Studio Czech Restaurant Dance Studio Daycare Deli / Bodega Department Store Design Studio Dessert Shop Dim Sum Restaurant Diner Discount Store Distillery Dive Bar Doctor's Office Dog Run Donut Shop Dosa Place Drugstore Dry Cleaner Dumpling Restaurant Duty-free Shop Eastern European Restaurant Egyptian Restaurant Electronics Store Empanada Restaurant English Restaurant Ethiopian Restaurant Event Service Event Space Exhibit Factory Falafel Restaurant Farm Farmers Market Fast Food Restaurant Field Filipino Restaurant Financial or Legal Service Fish & Chips Shop Fish Market Flea Market Flower Shop Food Food & Drink Shop Food Court Food Stand Food Truck Fountain French Restaurant Fried Chicken Joint Frozen Yogurt Shop Fruit & Vegetable Store Furniture / Home Store Gaming Cafe Garden Garden Center Gas Station Gastropub Gay Bar General Entertainment German Restaurant Gift Shop Gluten-free Restaurant Golf Course Gourmet Shop Greek Restaurant Grocery Store Gym Gym / Fitness Center Gym Pool Gymnastics Gym Halal Restaurant Harbor / Marina Hardware Store Hawaiian Restaurant Health & Beauty Service Health Food Store Heliport Herbs & Spices Store High School Himalayan Restaurant Historic Site History Museum Hobby Shop Home Service Hookah Bar Hostel Hot Dog Joint Hotel Hotel Bar Hotel Pool Hotpot Restaurant Hunan Restaurant IT Services Ice Cream Shop Indian Restaurant Indie Movie Theater Indie Theater Indonesian Restaurant Insurance Office Intersection Irish Pub Israeli Restaurant Italian Restaurant Japanese Curry Restaurant Japanese Restaurant Jazz Club Jewelry Store Jewish Restaurant Juice Bar Karaoke Bar Kebab Restaurant Kids Store Kitchen Supply Store Korean Restaurant Kosher Restaurant Lake Latin American Restaurant Laundromat Laundry Service Lawyer Leather Goods Store Lebanese Restaurant Library Lingerie Store Liquor Store Locksmith Lounge Malay Restaurant Market Martial Arts Dojo Massage Studio Mattress Store Medical Center Mediterranean Restaurant Memorial Site Men's Store Metro Station Mexican Restaurant Middle Eastern Restaurant Mini Golf Miscellaneous Shop Mobile Phone Shop Modern European Restaurant Molecular Gastronomy Restaurant Monument / Landmark Moroccan Restaurant Motel Motorcycle Shop Movie Theater Moving Target Multiplex Museum Music School Music Store Music Venue Nail Salon Neighborhood New American Restaurant Newsstand Nightclub Non-Profit Noodle House Office Opera House Optical Shop Organic Grocery Other Great Outdoors Other Nightlife Other Repair Shop Outdoor Sculpture Outdoor Supply Store Outdoors & Recreation Outlet Mall Outlet Store Paella Restaurant Pakistani Restaurant Paper / Office Supplies Store Park Pedestrian Plaza Performing Arts Venue Persian Restaurant Peruvian Restaurant Pet Café Pet Service Pet Store Pharmacy Photography Studio Physical Therapist Piano Bar Pie Shop Pier Piercing Parlor Pilates Studio Pizza Place Platform Playground Plaza Poke Place Polish Restaurant Pool Pool Hall Post Office Print Shop Pub Public Art Racetrack Ramen Restaurant Record Shop Recording Studio Recreation Center Rental Car Location Rental Service Residential Building (Apartment / Condo) Resort Rest Area Restaurant River Road Rock Climbing Spot Rock Club Romanian Restaurant Roof Deck Russian Restaurant Sake Bar Salad Place Salon / Barbershop Sandwich Place Scandinavian Restaurant Scenic Lookout School Sculpture Garden Seafood Restaurant Shabu-Shabu Restaurant Shanghai Restaurant Shipping Store Shoe Store Shop & Service Shopping Mall Skate Park Skating Rink Ski Area Ski Shop Smoke Shop Smoothie Shop Snack Place Soba Restaurant Soccer Field Social Club Soup Place South American Restaurant South Indian Restaurant Southern / Soul Food Restaurant Souvlaki Shop Spa Spanish Restaurant Speakeasy Spiritual Center Sporting Goods Shop Sports Bar Sports Club Sri Lankan Restaurant State / Provincial Park Stationery Store Steakhouse Storage Facility Street Art Strip Club Supermarket Supplement Shop Surf Spot Sushi Restaurant Swiss Restaurant Szechuan Restaurant Taco Place Tailor Shop Taiwanese Restaurant Tanning Salon Tapas Restaurant Tattoo Parlor Tea Room Tennis Court Tennis Stadium Tex-Mex Restaurant Thai Restaurant Theater Theme Park Theme Park Ride / Attraction Theme Restaurant Thrift / Vintage Store Tibetan Restaurant Tiki Bar Toll Plaza Tourist Information Center Toy / Game Store Track Trail Train Train Station Tree Turkish Restaurant Udon Restaurant Used Bookstore Vape Store Varenyky restaurant Vegetarian / Vegan Restaurant Venezuelan Restaurant Veterinarian Video Game Store Video Store Vietnamese Restaurant Volleyball Court Warehouse Store Waste Facility Waterfront Weight Loss Center Whisky Bar Wine Bar Wine Shop Wings Joint Women's Store
10283 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Fox Hills 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
10284 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Fox Hills 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
10285 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Fox Hills 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
10286 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Fox Hills 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
10287 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Fox Hills 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
In [31]:
newyork_onehot.shape
Out[31]:
(10288, 429)
In [32]:
newyork_grouped = newyork_onehot.groupby('Neighborhood').mean().reset_index()
newyork_grouped
Out[32]:
Neighborhood Yoga Studio Accessories Store Adult Boutique Afghan Restaurant African Restaurant Airport Terminal American Restaurant Antique Shop Arcade Arepa Restaurant Argentinian Restaurant Art Gallery Art Museum Arts & Crafts Store Arts & Entertainment Asian Restaurant Athletics & Sports Auditorium Australian Restaurant Austrian Restaurant Auto Garage Automotive Shop BBQ Joint Baby Store Bagel Shop Bakery Bank Bar Baseball Field Baseball Stadium Basketball Court Bath House Beach Beach Bar Bed & Breakfast Beer Bar Beer Garden Beer Store Big Box Store Bike Rental / Bike Share Bike Shop Bike Trail Bistro Board Shop Boat or Ferry Bookstore Boutique Bowling Alley Boxing Gym Brazilian Restaurant Breakfast Spot Brewery Bridal Shop Bridge Bubble Tea Shop Buffet Building Burger Joint Burrito Place Bus Line Bus Station Bus Stop Business Service Butcher Cafeteria Café Cajun / Creole Restaurant Cambodian Restaurant Camera Store Campground Candy Store Cantonese Restaurant Caribbean Restaurant Caucasian Restaurant Cha Chaan Teng Check Cashing Service Cheese Shop Chinese Restaurant Chocolate Shop Christmas Market Church Circus Climbing Gym Clothing Store Club House Cocktail Bar Coffee Shop College Academic Building College Arts Building College Basketball Court College Bookstore College Cafeteria College Theater Colombian Restaurant Comedy Club Comfort Food Restaurant Comic Shop Community Center Concert Hall Construction & Landscaping Convenience Store Cooking School Cosmetics Shop Coworking Space Creperie Cuban Restaurant Cultural Center Cupcake Shop Cycle Studio Czech Restaurant Dance Studio Daycare Deli / Bodega Department Store Design Studio Dessert Shop Dim Sum Restaurant Diner Discount Store Distillery Dive Bar Doctor's Office Dog Run Donut Shop Dosa Place Drugstore Dry Cleaner Dumpling Restaurant Duty-free Shop Eastern European Restaurant Egyptian Restaurant Electronics Store Empanada Restaurant English Restaurant Ethiopian Restaurant Event Service Event Space Exhibit Factory Falafel Restaurant Farm Farmers Market Fast Food Restaurant Field Filipino Restaurant Financial or Legal Service Fish & Chips Shop Fish Market Flea Market Flower Shop Food Food & Drink Shop Food Court Food Stand Food Truck Fountain French Restaurant Fried Chicken Joint Frozen Yogurt Shop Fruit & Vegetable Store Furniture / Home Store Gaming Cafe Garden Garden Center Gas Station Gastropub Gay Bar General Entertainment German Restaurant Gift Shop Gluten-free Restaurant Golf Course Gourmet Shop Greek Restaurant Grocery Store Gym Gym / Fitness Center Gym Pool Gymnastics Gym Halal Restaurant Harbor / Marina Hardware Store Hawaiian Restaurant Health & Beauty Service Health Food Store Heliport Herbs & Spices Store High School Himalayan Restaurant Historic Site History Museum Hobby Shop Home Service Hookah Bar Hostel Hot Dog Joint Hotel Hotel Bar Hotel Pool Hotpot Restaurant Hunan Restaurant IT Services Ice Cream Shop Indian Restaurant Indie Movie Theater Indie Theater Indonesian Restaurant Insurance Office Intersection Irish Pub Israeli Restaurant Italian Restaurant Japanese Curry Restaurant Japanese Restaurant Jazz Club Jewelry Store Jewish Restaurant Juice Bar Karaoke Bar Kebab Restaurant Kids Store Kitchen Supply Store Korean Restaurant Kosher Restaurant Lake Latin American Restaurant Laundromat Laundry Service Lawyer Leather Goods Store Lebanese Restaurant Library Lingerie Store Liquor Store Locksmith Lounge Malay Restaurant Market Martial Arts Dojo Massage Studio Mattress Store Medical Center Mediterranean Restaurant Memorial Site Men's Store Metro Station Mexican Restaurant Middle Eastern Restaurant Mini Golf Miscellaneous Shop Mobile Phone Shop Modern European Restaurant Molecular Gastronomy Restaurant Monument / Landmark Moroccan Restaurant Motel Motorcycle Shop Movie Theater Moving Target Multiplex Museum Music School Music Store Music Venue Nail Salon New American Restaurant Newsstand Nightclub Non-Profit Noodle House Office Opera House Optical Shop Organic Grocery Other Great Outdoors Other Nightlife Other Repair Shop Outdoor Sculpture Outdoor Supply Store Outdoors & Recreation Outlet Mall Outlet Store Paella Restaurant Pakistani Restaurant Paper / Office Supplies Store Park Pedestrian Plaza Performing Arts Venue Persian Restaurant Peruvian Restaurant Pet Café Pet Service Pet Store Pharmacy Photography Studio Physical Therapist Piano Bar Pie Shop Pier Piercing Parlor Pilates Studio Pizza Place Platform Playground Plaza Poke Place Polish Restaurant Pool Pool Hall Post Office Print Shop Pub Public Art Racetrack Ramen Restaurant Record Shop Recording Studio Recreation Center Rental Car Location Rental Service Residential Building (Apartment / Condo) Resort Rest Area Restaurant River Road Rock Climbing Spot Rock Club Romanian Restaurant Roof Deck Russian Restaurant Sake Bar Salad Place Salon / Barbershop Sandwich Place Scandinavian Restaurant Scenic Lookout School Sculpture Garden Seafood Restaurant Shabu-Shabu Restaurant Shanghai Restaurant Shipping Store Shoe Store Shop & Service Shopping Mall Skate Park Skating Rink Ski Area Ski Shop Smoke Shop Smoothie Shop Snack Place Soba Restaurant Soccer Field Social Club Soup Place South American Restaurant South Indian Restaurant Southern / Soul Food Restaurant Souvlaki Shop Spa Spanish Restaurant Speakeasy Spiritual Center Sporting Goods Shop Sports Bar Sports Club Sri Lankan Restaurant State / Provincial Park Stationery Store Steakhouse Storage Facility Street Art Strip Club Supermarket Supplement Shop Surf Spot Sushi Restaurant Swiss Restaurant Szechuan Restaurant Taco Place Tailor Shop Taiwanese Restaurant Tanning Salon Tapas Restaurant Tattoo Parlor Tea Room Tennis Court Tennis Stadium Tex-Mex Restaurant Thai Restaurant Theater Theme Park Theme Park Ride / Attraction Theme Restaurant Thrift / Vintage Store Tibetan Restaurant Tiki Bar Toll Plaza Tourist Information Center Toy / Game Store Track Trail Train Train Station Tree Turkish Restaurant Udon Restaurant Used Bookstore Vape Store Varenyky restaurant Vegetarian / Vegan Restaurant Venezuelan Restaurant Veterinarian Video Game Store Video Store Vietnamese Restaurant Volleyball Court Warehouse Store Waste Facility Waterfront Weight Loss Center Whisky Bar Wine Bar Wine Shop Wings Joint Women's Store
0 Allerton 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034483 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.068966 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034483 0.000000 0.068966 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.034483 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.068966 0.034483 0.00 0.034483 0.000000 0.000000 0.034483 0.000000 0.000000 0.000 0.000000 0.034483 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.034483 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.034483 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.034483 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034483 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034483 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.034483 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.137931 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.034483 0.068966 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.103448 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
1 Annadale 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.153846 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.076923 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.076923 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.230769 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.076923 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.076923 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.076923 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
2 Arden Heights 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.200000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.200000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
3 Arlington 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.250000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.250000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.250000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.250000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
4 Arrochar 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.100000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.050000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.050000 0.000000 0.000000 0.000000 0.00 0.000000 0.050000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
5 Arverne 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.055556 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.055556 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.055556 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.222222 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.055556 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000
6 Astoria 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.010000 0.00 0.020000 0.030000 0.000000 0.070000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.010000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.020000 0.000000 0.00 0.020000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.020000 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.050000 0.020000 0.020000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.020000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.020000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.030000 0.000000 0.000000 0.000000 0.010000 0.050000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.030000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.020000 0.010000 0.00 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.01 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.010000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000
7 Astoria Heights 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.076923 0.000000 0.000000 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.076923 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.076923 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.076923 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.076923 0.000000 0.076923 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.076923 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.076923 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
8 Auburndale 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.055556 0.000000 0.00 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.055556 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.055556 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.055556 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.055556 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
9 Bath Beach 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020833 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.020833 0.020833 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.020833 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.020833 0.000000 0.000000 0.000000 0.020833 0.000000 0.083333 0.00 0.00 0.000000 0.00 0.000000 0.020833 0.00 0.000000 0.020833 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.020833 0.000000 0.00 0.020833 0.020833 0.020833 0.000000 0.000000 0.000000 0.000 0.000000 0.041667 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.020833 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.020833 0.000000 0.000000 0.000000 0.020833 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.020833 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.020833 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020833 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.020833 0.000000 0.000000 0.020833 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020833 0.0000 0.000000 0.00 0.020833 0.000000 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.020833 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020833 0.000000 0.000000 0.000000 0.000000 0.020833 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.020833 0.000000 0.000000 0.000000 0.020833 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.020833 0.041667 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020833 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.020833 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020833
10 Battery Park City 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010753 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010753 0.010753 0.00 0.00 0.00 0.000000 0.021505 0.00 0.000000 0.010753 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010753 0.000000 0.000000 0.000000 0.00 0.000000 0.010753 0.000000 0.021505 0.000000 0.010753 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010753 0.021505 0.010753 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.010753 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010753 0.00 0.00 0.000000 0.00 0.000000 0.021505 0.00 0.000000 0.053763 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010753 0.010753 0.000000 0.000000 0.000000 0.000000 0.010753 0.000000 0.00 0.000000 0.00 0.000000 0.010753 0.00 0.010753 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.010753 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021505 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010753 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010753 0.000000 0.000000 0.021505 0.000000 0.010753 0.043011 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.010753 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.053763 0.010753 0.0000 0.000000 0.000000 0.000000 0.021505 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021505 0.000000 0.000000 0.000000 0.000000 0.000000 0.010753 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.010753 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010753 0.032258 0.010753 0.000000 0.010753 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.010753 0.00 0.000000 0.000000 0.010753 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.075269 0.0000 0.010753 0.00 0.000000 0.000000 0.000000 0.010753 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.021505 0.000000 0.010753 0.021505 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010753 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021505 0.00 0.010753 0.000000 0.010753 0.000000 0.000000 0.000000 0.000000 0.010753 0.000000 0.021505 0.000000 0.000000 0.000000 0.00 0.010753 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010753 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010753 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.010753 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010753 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.000000 0.010753
11 Bay Ridge 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.035294 0.000000 0.000000 0.000000 0.000000 0.011765 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.023529 0.000000 0.000000 0.035294 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.011765 0.000000 0.000000 0.000000 0.000000 0.011765 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.011765 0.000000 0.000000 0.000000 0.023529 0.00 0.00 0.000000 0.00 0.000000 0.011765 0.00 0.000000 0.023529 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.011765 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.011765 0.00 0.000000 0.011765 0.011765 0.000000 0.000000 0.000000 0.000 0.000000 0.011765 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.011765 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047059 0.023529 0.000000 0.011765 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.023529 0.000000 0.000000 0.011765 0.000000 0.0000 0.000000 0.000000 0.000000 0.023529 0.011765 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.070588 0.000000 0.000000 0.000000 0.000000 0.000000 0.011765 0.011765 0.000000 0.011765 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.011765 0.000000 0.000000 0.011765 0.000000 0.000000 0.000000 0.000000 0.011765 0.00 0.000000 0.000000 0.000000 0.000000 0.011765 0.011765 0.000000 0.000000 0.011765 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011765 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.011765 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011765 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.035294 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.047059 0.000000 0.023529 0.000000 0.000000 0.000000 0.000000 0.011765 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023529 0.00 0.000000 0.000000 0.000000 0.011765 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.011765 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.070588 0.000000 0.000000 0.00 0.000000 0.011765 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.011765 0.000000 0.000000 0.023529 0.00 0.000000 0.011765 0.00000 0.000000 0.000000 0.000000 0.000000 0.011765 0.000000 0.000000 0.000 0.023529 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.011765 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.011765 0.000000 0.011765 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
12 Bay Terrace 0.000000 0.021277 0.00 0.000000 0.000000 0.000000 0.042553 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.021277 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.085106 0.00 0.000000 0.021277 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.042553 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.021277 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.063830 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.021277 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021277 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.063830 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.042553 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.042553 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.042553 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021277 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021277 0.021277 0.000000 0.021277 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.00 0.063830 0.000000 0.000000 0.021277 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.021277 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000000 0.042553
13 Baychester 0.000000 0.045455 0.00 0.000000 0.000000 0.000000 0.045455 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.000 0.000000 0.090909 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.045455 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.045455 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.00 0.000000 0.000000 0.045455 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.045455 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.045455 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
14 Bayside 0.013699 0.000000 0.00 0.000000 0.000000 0.000000 0.041096 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013699 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.013699 0.027397 0.013699 0.082192 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013699 0.000000 0.000000 0.000000 0.00 0.000000 0.013699 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013699 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013699 0.013699 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.013699 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.013699 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.013699 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.013699 0.000000 0.000000 0.013699 0.000000 0.00 0.000000 0.000000 0.013699 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027397 0.000000 0.013699 0.013699 0.000000 0.013699 0.000000 0.000000 0.000000 0.000000 0.013699 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.013699 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.027397 0.041096 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027397 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.013699 0.000000 0.000000 0.013699 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.013699 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.013699 0.000000 0.013699 0.000000 0.041096 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.013699 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.013699 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.041096 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027397 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013699 0.013699 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.013699 0.013699 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.013699 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.013699 0.00 0.000000 0.00 0.027397 0.013699 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013699 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.041096 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.013699 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013699 0.000000 0.013699 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.013699 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.013699 0.000000 0.000000 0.000000
15 Bayswater 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.500000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.500000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
16 Bedford Park 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.029412 0.000000 0.029412 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.029412 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.088235 0.000000 0.00 0.000000 0.000000 0.117647 0.029412 0.000000 0.000000 0.000 0.000000 0.029412 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.088235 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.117647 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.029412 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.029412 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.088235 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
17 Bedford Stuyvesant 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.040000 0.00 0.040000 0.000000 0.000000 0.080000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.080000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.040000 0.080000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.080000 0.000000 0.00 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.040000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.080000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.040000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.040000 0.000000 0.000000
18 Beechhurst 0.066667 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.133333 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.066667 0.000000 0.00 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.066667 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.066667 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.066667 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.066667 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
19 Bellaire 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.166667 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.083333 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.083333 0.000000 0.00 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.083333 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
20 Belle Harbor 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.058824 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.176471 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.117647 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.058824 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.117647 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.117647 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
21 Bellerose 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.090909 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.045455 0.000000 0.00 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000 0.000000 0.045455 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.00 0.00 0.000000 0.00 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.000000 0.00 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000
22 Belmont 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010204 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.051020 0.030612 0.020408 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010204 0.000000 0.000000 0.000000 0.000000 0.010204 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010204 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.020408 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.010204 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.061224 0.010204 0.00 0.030612 0.000000 0.010204 0.000000 0.000000 0.000000 0.000 0.000000 0.030612 0.000000 0.00 0.000000 0.000000 0.00 0.010204 0.000000 0.010204 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010204 0.000000 0.000000 0.00 0.000000 0.020408 0.000000 0.000000 0.000000 0.020408 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.010204 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010204 0.000000 0.020408 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.010204 0.000000 0.000000 0.000000 0.000000 0.000000 0.010204 0.000000 0.000000 0.193878 0.000000 0.010204 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.020408 0.000000 0.000000 0.000000 0.010204 0.010204 0.000000 0.000000 0.00 0.010204 0.000000 0.000000 0.000000 0.020408 0.000000 0.000000 0.010204 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010204 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010204 0.000000 0.000000 0.010204 0.000000 0.000000 0.000 0.000000 0.091837 0.000000 0.000000 0.010204 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010204 0.000000 0.000000 0.000000 0.000000 0.020408 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020408 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020408 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010204 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.030612 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.010204 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010204 0.000000
23 Bensonhurst 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.035714 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.071429 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.071429 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.035714 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035714 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035714 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.035714 0.000000 0.000000 0.071429 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
24 Bergen Beach 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.166667 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.166667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.166667 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.333333 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.166667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
25 Blissville 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.052632 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.105263 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.105263 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.105263 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
26 Bloomfield 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.200000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.200000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.2 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
27 Boerum Hill 0.021978 0.000000 0.00 0.000000 0.000000 0.000000 0.010989 0.010989 0.000000 0.000000 0.000000 0.000000 0.000000 0.032967 0.000000 0.000000 0.010989 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.021978 0.010989 0.043956 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010989 0.010989 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010989 0.000000 0.000000 0.010989 0.010989 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010989 0.00 0.0000 0.000000 0.000000 0.000000 0.010989 0.000000 0.000000 0.000000 0.000000 0.010989 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.021978 0.043956 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010989 0.000000 0.000000 0.000000 0.021978 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.043956 0.00 0.032967 0.010989 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.010989 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010989 0.000000 0.000000 0.010989 0.000000 0.021978 0.00 0.032967 0.000000 0.000000 0.000000 0.032967 0.00 0.000000 0.010989 0.000000 0.000000 0.000000 0.000000 0.000000 0.010989 0.000000 0.000000 0.000000 0.000000 0.021978 0.000000 0.021978 0.000000 0.000000 0.010989 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.010989 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010989 0.000000 0.010989 0.000000 0.010989 0.000000 0.010989 0.000000 0.000000 0.021978 0.00 0.000000 0.000000 0.000000 0.000000 0.010989 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010989 0.000000 0.000000 0.000000 0.010989 0.021978 0.000000 0.000000 0.00 0.000000 0.000000 0.010989 0.000000 0.010989 0.021978 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010989 0.010989 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.010989 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032967 0.00 0.000000 0.000000 0.000000 0.010989 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.010989 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.021978 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010989 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010989 0.000000 0.000 0.010989 0.010989 0.0 0.000000 0.00 0.010989 0.0000 0.010989 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010989 0.000000 0.000000
28 Borough Park 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.166667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.041667 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.125000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.041667 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.125000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
29 Breezy Point 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.200000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.200000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
30 Briarwood 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.125000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.125000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.125000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.125000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.125000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.125000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.125000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.125000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
31 Brighton Beach 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.022222 0.044444 0.000000 0.000000 0.000000 0.000000 0.000000 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.022222 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.022222 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.022222 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.022222 0.000000 0.022222 0.000000 0.000000 0.000000 0.000 0.000000 0.022222 0.000000 0.00 0.000000 0.000000 0.00 0.066667 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.044444 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.022222 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.044444 0.000000 0.022222 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.022222 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.022222 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.022222 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.044444 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.022222 0.000000 0.000000 0.000000 0.000000 0.000000 0.022222 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.044444 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.022222 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.066667 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.066667 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.022222 0.022222 0.000000 0.044444 0.00 0.000000 0.022222 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.022222 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
32 Broad Channel 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.200000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.200000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.200000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
33 Broadway Junction 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.142857 0.071429 0.000000 0.000000 0.000 0.000000 0.142857 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.142857 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
34 Bronxdale 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.083333 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.0000 0.083333 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.083333 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.083333 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
35 Brooklyn Heights 0.050000 0.000000 0.00 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.010000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.010000 0.030000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.01 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.010000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.00 0.040000 0.000000 0.00 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000 0.000000 0.010000 0.000000 0.00 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.010000 0.000000 0.010000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.020000 0.030000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.020000 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.020000 0.010000 0.000000 0.000000 0.010000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.040000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.020000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.010000 0.020000 0.000000 0.010000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.00 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.010000 0.000000 0.010000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.020000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.020000 0.000000 0.010000
36 Brookville 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 1.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
37 Brownsville 0.000000 0.000000 0.00 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.086957 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.043478 0.000000 0.00 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.043478 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.086957 0.0000 0.043478 0.00 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.043478 0.000000 0.043478 0.043478 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.130435 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.043478 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
38 Bulls Head 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.025000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.025000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.025000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.025000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.050000 0.000000 0.00 0.025000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000 0.000000 0.025000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.00 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.025000 0.000000 0.000000 0.025000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.025 0.025000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.025000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000
39 Bushwick 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.013333 0.000000 0.000000 0.000000 0.000000 0.013333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.013333 0.040000 0.000000 0.093333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013333 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.013333 0.000000 0.000000 0.000000 0.000000 0.026667 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.080000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013333 0.013333 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.066667 0.000000 0.00 0.000000 0.000000 0.013333 0.040000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.013333 0.000000 0.013333 0.000000 0.00 0.013333 0.000000 0.000000 0.013333 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013333 0.013333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.013333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.013333 0.000000 0.000000 0.013333 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.013333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.013333 0.000000 0.000000 0.000000 0.066667 0.000000 0.000000 0.000000 0.013333 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013333 0.00 0.013333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.013333 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.013333 0.013333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.040000 0.000000 0.013333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013333 0.000000 0.000000 0.013333 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013333 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013333 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.013333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.040000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.013333 0.013333 0.000000 0.026667 0.00 0.000000 0.013333 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
40 Butler Manor 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.333333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.166667 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.166667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.333333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
41 Cambria Heights 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.181818 0.000000 0.000000 0.000000 0.000000 0.090909 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
42 Canarsie 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.200000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.200000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
43 Carnegie Hill 0.030000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.010000 0.030000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.010000 0.00 0.020000 0.070000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.01 0.010000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.00 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.030000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.030000 0.030000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.0000 0.000000 0.000000 0.000000 0.010000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.050000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.020000 0.00 0.000000 0.010000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.030000 0.000000 0.010000
44 Carroll Gardens 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.040000 0.020000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.00 0.010000 0.00 0.000000 0.000000 0.00 0.040000 0.050000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.010000 0.000000 0.00 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.010000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.010000 0.00 0.000000 0.010000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.010000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.01 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.020000 0.010000 0.020000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.01 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.020000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.110000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.010000 0.050000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.030000 0.000000 0.000000 0.00 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.020000 0.000000 0.0 0.000000 0.00 0.010000 0.0000 0.010000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.030000 0.010000 0.010000
45 Castle Hill 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.111111 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.111111 0.000000 0.00 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.111111 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
46 Castleton Corners 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.071429 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.071429 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.214286 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000 0.071429 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
47 Central Harlem 0.000000 0.000000 0.00 0.000000 0.046512 0.000000 0.046512 0.000000 0.000000 0.000000 0.000000 0.023256 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.023256 0.00 0.023256 0.000000 0.000000 0.046512 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023256 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.023256 0.023256 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023256 0.023256 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.023256 0.000000 0.000000 0.000000 0.000000 0.046512 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.023256 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.046512 0.000000 0.000000 0.000000 0.000000 0.000000 0.023256 0.00 0.000000 0.00 0.023256 0.000000 0.00 0.023256 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.023256 0.0000 0.023256 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.046512 0.023256 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023256 0.023256 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023256 0.000000 0.000000 0.023256 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.023256 0.000000 0.000000 0.000000 0.000000 0.000000 0.023256 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023256 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023256 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.023256 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023256 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.046512 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.023256 0.00 0.023256 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.023256 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
48 Charleston 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.032258 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.032258 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.064516 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.000000 0.032258 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.032258 0.00 0.000000 0.032258 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.032258 0.000000 0.000000 0.064516 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.032258 0.00 0.000000 0.000000 0.032258 0.000000 0.000000 0.000000 0.000 0.000000 0.032258 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.032258 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.000000 0.000000 0.000000 0.000000 0.032258 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.032258 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.032258 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.032258 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.032258 0.032258 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.032258 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258
49 Chelsea 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.027778 0.000000 0.000000 0.000000 0.000000 0.018519 0.000000 0.009259 0.000000 0.009259 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.009259 0.046296 0.000000 0.009259 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009259 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.018519 0.000000 0.000000 0.000000 0.000000 0.009259 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009259 0.000000 0.000000 0.000000 0.009259 0.000000 0.009259 0.000000 0.009259 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009259 0.009259 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.018519 0.055556 0.000000 0.00 0.000000 0.00 0.000000 0.009259 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.009259 0.000000 0.009259 0.000000 0.000000 0.018519 0.018519 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.009259 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.009259 0.009259 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.018519 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009259 0.000000 0.000000 0.000000 0.000000 0.009259 0.009259 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009259 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027778 0.000000 0.0000 0.000000 0.000000 0.000000 0.037037 0.009259 0.000000 0.009259 0.000000 0.000000 0.000000 0.000000 0.009259 0.055556 0.000000 0.018519 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018519 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.018519 0.000000 0.009259 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.027778 0.000000 0.009259 0.009259 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.009259 0.000000 0.000000 0.018519 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.009259 0.000000 0.009259 0.009259 0.000000 0.000000 0.000000 0.000 0.000000 0.009259 0.000000 0.000000 0.009259 0.009259 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018519 0.00 0.009259 0.000000 0.000000 0.027778 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.009259 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.009259 0.009259 0.00 0.009259 0.000000 0.000000 0.000000 0.000000 0.000000 0.009259 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.009259 0.00000 0.000000 0.000000 0.018519 0.000000 0.000000 0.000000 0.000000 0.000 0.009259 0.037037 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.009259 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018519 0.000000 0.009259
50 Chinatown 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.00 0.01 0.00 0.000000 0.000000 0.00 0.000000 0.040000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.01 0.000000 0.000000 0.000000 0.000000 0.010000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.0000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.090000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.050000 0.020000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.020000 0.020000 0.010000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.01 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.0000 0.020000 0.000000 0.000000 0.020000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.010000 0.00 0.000000 0.000000 0.020000 0.000000 0.000000 0.030000 0.010000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.010000 0.000000 0.030000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.030000 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000 0.010000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.030000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
51 City Island 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.040000 0.040000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.040000 0.000000 0.00 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.040000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.120000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.080000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.040000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.040000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.080000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
52 City Line 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.028571 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.028571 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.028571 0.000000 0.028571 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.00 0.028571 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000 0.000000 0.085714 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.028571 0.028571 0.000000 0.000000 0.000000 0.028571 0.00 0.000000 0.028571 0.000000 0.000000 0.028571 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.028571 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.028571 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.057143 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.057143 0.000000 0.000000 0.000000 0.000000 0.028571 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.028571 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.028571 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.028571 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
53 Civic Center 0.030000 0.000000 0.00 0.000000 0.000000 0.000000 0.030000 0.010000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.01 0.00 0.00 0.000000 0.000000 0.01 0.010000 0.030000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.010000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.010000 0.00 0.030000 0.040000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.010000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.040000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.020000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.020000 0.0000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.020000 0.010000 0.000000 0.01 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.01 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.030000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.030000 0.000000 0.000000 0.00 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.01 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.010000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.010000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.020000 0.010000 0.000000
54 Claremont Village 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.086957 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.130435 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.086957 0.000000 0.00 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.043478 0.043478 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.130435 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.086957 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.043478 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
55 Clason Point 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.400000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.100000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
56 Clifton 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.047619 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.047619 0.000000 0.00 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.047619 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.095238 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.095238 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.095238 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.047619 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.095238 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
57 Clinton 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.020000 0.040000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.010000 0.010000 0.000000 0.000000 0.010000 0.000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.00 0.020000 0.010000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.010000 0.0000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.0000 0.010000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.000000 0.01 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.030000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.040000 0.000000 0.000000 0.00 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.010000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.010000 0.090000 0.0 0.000000 0.00 0.000000 0.0000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.030000 0.000000 0.000000
58 Clinton Hill 0.032609 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010870 0.000000 0.021739 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.021739 0.000000 0.010870 0.010870 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010870 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010870 0.000000 0.010870 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010870 0.000000 0.000000 0.010870 0.000000 0.000000 0.000000 0.000000 0.000000 0.010870 0.00 0.0000 0.000000 0.000000 0.000000 0.021739 0.000000 0.000000 0.000000 0.000000 0.021739 0.00 0.00 0.000000 0.00 0.000000 0.010870 0.00 0.021739 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.010870 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.032609 0.000000 0.00 0.010870 0.000000 0.021739 0.000000 0.000000 0.000000 0.000 0.000000 0.010870 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.010870 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010870 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010870 0.000000 0.010870 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.010870 0.032609 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.054348 0.000000 0.032609 0.000000 0.000000 0.000000 0.010870 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010870 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.021739 0.000000 0.010870 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.043478 0.010870 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.010870 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010870 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.021739 0.000000 0.000000 0.000000 0.000000 0.010870 0.000000 0.000 0.000000 0.054348 0.000000 0.010870 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010870 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010870 0.000000 0.000000 0.000000 0.000000 0.032609 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021739 0.00 0.000000 0.000000 0.010870 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.010870 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010870 0.000000 0.000000 0.021739 0.00 0.000000 0.000000 0.01087 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.032609 0.000000 0.0 0.000000 0.00 0.010870 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010870 0.00 0.000000 0.000000 0.000000 0.010870 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010870 0.043478 0.000000 0.000000
59 Co-op City 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.058824 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.176471 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.058824 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
60 Cobble Hill 0.030612 0.000000 0.00 0.000000 0.000000 0.000000 0.010204 0.000000 0.000000 0.000000 0.010204 0.010204 0.000000 0.010204 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.010204 0.00 0.010204 0.020408 0.000000 0.040816 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.020408 0.010204 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010204 0.000000 0.000000 0.000000 0.000000 0.010204 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010204 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.030612 0.040816 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010204 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.030612 0.000000 0.00 0.010204 0.000000 0.010204 0.000000 0.000000 0.020408 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.010204 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.010204 0.0000 0.000000 0.00 0.000000 0.010204 0.000000 0.010204 0.000000 0.000000 0.000000 0.00 0.000000 0.010204 0.000000 0.000000 0.000000 0.010204 0.000000 0.000000 0.010204 0.00 0.020408 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010204 0.000000 0.000000 0.000000 0.010204 0.000000 0.000000 0.010204 0.000000 0.010204 0.000000 0.010204 0.000000 0.000000 0.000000 0.010204 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.030612 0.000000 0.010204 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030612 0.000000 0.020408 0.000000 0.000000 0.000000 0.010204 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010204 0.000000 0.000000 0.00 0.020408 0.000000 0.010204 0.000000 0.020408 0.020408 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010204 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010204 0.010204 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.010204 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.010204 0.040816 0.000000 0.040816 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010204 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010204 0.000000 0.00 0.000000 0.000000 0.000000 0.010204 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.020408 0.010204 0.010204 0.00 0.010204 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010204 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.020408 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.010204 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.010204 0.000000 0.000000 0.010204 0.020408 0.000000 0.000000
61 College Point 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.047619 0.023810 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.023810 0.000000 0.000000 0.000000 0.000000 0.071429 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.095238 0.000000 0.00 0.023810 0.000000 0.023810 0.000000 0.000000 0.000000 0.000 0.000000 0.023810 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023810 0.023810 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023810 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023810 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.00 0.000000 0.000000 0.000000 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.023810 0.023810 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023810 0.000000 0.000000 0.00 0.023810 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.023810 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
62 Concord 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.111111 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.111111 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.0000 0.000000 0.00 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.111111 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
63 Concourse 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.041667 0.00 0.00 0.000000 0.00 0.000000 0.041667 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.083333 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.041667 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.041667 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.083333 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.041667 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.041667 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
64 Concourse Village 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027778 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027778 0.00 0.00 0.000000 0.00 0.000000 0.027778 0.00 0.000000 0.027778 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.027778 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.055556 0.000000 0.00 0.000000 0.000000 0.027778 0.000000 0.000000 0.000000 0.000 0.000000 0.027778 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027778 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027778 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.027778 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027778 0.000000 0.000000 0.000000 0.000000 0.000000 0.027778 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.027778 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027778 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.027778 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.027778 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027778 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.027778 0.00 0.000000 0.000000 0.000000 0.00 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.027778 0.027778 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
65 Coney Island 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.142857 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.071429 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.071429 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
66 Corona 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.055556 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.055556 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.055556 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.055556 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.055556 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.055556 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
67 Country Club 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.142857 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.142857 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.142857 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.285714 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
68 Crown Heights 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.047619 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.095238 0.000000 0.00 0.0000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.047619 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.047619 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.047619 0.000000 0.095238 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.142857 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.047619 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
69 Cypress Hills 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.035714 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.035714 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.035714 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000 0.000000 0.071429 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.107143 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.035714 0.035714 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.035714 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.035714 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
70 Ditmas Park 0.020000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.020000 0.020000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.020000 0.020000 0.000000 0.000000 0.020000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.040000 0.00 0.00 0.000000 0.00 0.000000 0.020000 0.00 0.000000 0.020000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.020000 0.020000 0.00 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000 0.000000 0.040000 0.000000 0.00 0.020000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.00 0.000000 0.020000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.020000 0.020000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.020000 0.020000 0.000000 0.000000 0.000000 0.020000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.020000 0.00 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.020000 0.00000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.020000 0.0 0.000000 0.00 0.000000 0.0200 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000
71 Dongan Hills 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.080000 0.000000 0.040000 0.000000 0.040000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.080000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.080000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.080000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.080000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.040000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
72 Douglaston 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.100000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.100000 0.000000 0.00 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000 0.000000 0.050000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.050000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.050000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.050000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
73 Downtown 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.020000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.010000 0.00 0.010000 0.020000 0.010000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.020000 0.000000 0.000000 0.040000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.010000 0.030000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.020000 0.040000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.00 0.010000 0.00 0.010000 0.010000 0.00 0.000000 0.000000 0.020000 0.010000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.010000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.00 0.020000 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.020000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.0000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.010000 0.020000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.0000 0.020000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.020000 0.000000 0.000000 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.030000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.020000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.010000 0.00 0.000000 0.00 0.010000 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.020000 0.010000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.020000 0.000000 0.000000
74 Dumbo 0.025316 0.000000 0.00 0.000000 0.000000 0.000000 0.025316 0.012658 0.000000 0.000000 0.000000 0.025316 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.012658 0.037975 0.000000 0.012658 0.000000 0.000000 0.000000 0.000000 0.012658 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.025316 0.000000 0.000000 0.025316 0.000000 0.012658 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012658 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050633 0.000000 0.00 0.0000 0.000000 0.012658 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.012658 0.012658 0.00 0.000000 0.063291 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.012658 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.012658 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.012658 0.012658 0.000000 0.025316 0.00 0.000000 0.000000 0.000000 0.000000 0.012658 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025316 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.012658 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.025316 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025316 0.000000 0.025316 0.000000 0.000000 0.000000 0.012658 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.012658 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.012658 0.000000 0.012658 0.000000 0.012658 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012658 0.000000 0.012658 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012658 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050633 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.012658 0.012658 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.025316 0.000000 0.025316 0.000000 0.000000 0.000000 0.012658 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012658 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.012658 0.000000 0.012658 0.00 0.037975 0.000000 0.000000 0.012658 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.012658 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.012658 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.012658 0.0 0.012658 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025316 0.000000 0.000000
75 Dyker Heights 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.111111 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.111111 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
76 East Elmhurst 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.111111 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.222222 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.0000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.111111 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
77 East Flatbush 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.083333 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.083333 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.083333 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000
78 East Harlem 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025641 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025641 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025641 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.025641 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025641 0.000000 0.000000 0.000000 0.00 0.025641 0.00 0.051282 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.025641 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.025641 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025641 0.025641 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.025641 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.051282 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.025641 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.153846 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025641 0.0000 0.025641 0.00 0.000000 0.000000 0.000000 0.000000 0.025641 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.025641 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025641 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025641 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.025641 0.025641 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025641 0.000000 0.025641 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.025641 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.076923 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
79 East New York 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.125000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.062500 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.062500 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0625 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.187500 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.062500 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.062500 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.062500 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
80 East Tremont 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.105263 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.052632 0.000000 0.00 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000 0.000000 0.052632 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.157895 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.105263 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.052632 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.052632 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
81 East Village 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.020000 0.010000 0.000000 0.010000 0.010000 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.020000 0.020000 0.000000 0.060000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.040000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.040000 0.030000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.010000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.030000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.040000 0.010000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.01 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.0000 0.000000 0.00 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.010000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.01 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.01 0.000000 0.00 0.000000 0.00 0.010000 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.01 0.000000 0.000000 0.00000 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.020000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.030000 0.00 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.010000 0.000000 0.000000
82 East Williamsburg 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014706 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.014706 0.00 0.014706 0.058824 0.014706 0.073529 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014706 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014706 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.044118 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.058824 0.058824 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.044118 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.058824 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.014706 0.000 0.000000 0.029412 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.014706 0.000000 0.000000 0.000000 0.00 0.000000 0.014706 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.014706 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.014706 0.000000 0.000000 0.000000 0.000000 0.000000 0.014706 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014706 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014706 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014706 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.014706 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.044118 0.014706 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014706 0.0000 0.014706 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.014706 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014706 0.014706 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014706 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.00 0.000000 0.000000 0.000000 0.014706 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.014706 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.014706 0.000000 0.0 0.014706 0.00 0.014706 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.029412 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
83 Eastchester 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.095238 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.047619 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.047619 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.095238 0.000000 0.00 0.000000 0.000000 0.095238 0.000000 0.000000 0.000000 0.000 0.000000 0.047619 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.047619 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
84 Edenwald 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.166667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.166667 0.000000 0.000000 0.000000 0.000000 0.166667 0.000000 0.000000 0.000000 0.000000 0.166667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.166667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.166667 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
85 Edgemere 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.071429 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.071429 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
86 Edgewater Park 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.047619 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.095238 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.095238 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.190476 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.095238 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
87 Egbertville 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.200000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.200000 0.000000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
88 Elm Park 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.222222 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.222222 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
89 Elmhurst 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.029412 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.029412 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.117647 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.00 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.029412 0.00 0.000000 0.000000 0.00 0.088235 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.029412 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.205882 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.058824 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
90 Eltingville 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.028571 0.057143 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.028571 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.028571 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.028571 0.000000 0.00 0.000000 0.000000 0.057143 0.000000 0.000000 0.000000 0.000 0.000000 0.028571 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.057143 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.057143 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.028571 0.028571 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.057143 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.114286 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.114286 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
91 Erasmus 0.043478 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.173913 0.000000 0.000000 0.000000 0.000000 0.043478 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.043478 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.00 0.000000 0.043478 0.000000 0.000000 0.043478 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.043478 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
92 Far Rockaway 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.057143 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.057143 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.085714 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.085714 0.000000 0.00 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000 0.000000 0.028571 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.057143 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.085714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.028571 0.057143 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.114286 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.028571 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.028571 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571
93 Fieldston 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.333333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.333333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.333333 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
94 Financial District 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.020000 0.090000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.010000 0.000000 0.000000 0.010000 0.00 0.000000 0.00 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.020000 0.00 0.000000 0.020000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.040000 0.00 0.010000 0.010000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.040000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.0000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.010000 0.020000 0.000000 0.020000 0.000000 0.020000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.040000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.010000
95 Flatbush 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.050000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.050000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.100000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.050000 0.000000 0.00 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000 0.000000 0.050000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.100000 0.050000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.050000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
96 Flatiron 0.040000 0.000000 0.00 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.01 0.00 0.000000 0.00 0.000000 0.040000 0.00 0.010000 0.030000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.010000 0.000000 0.000000 0.030000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.010000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.010000 0.020000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.040000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.020000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.010000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.010000 0.000000 0.010000 0.030000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.040000 0.000000 0.010000 0.00 0.020000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000 0.010000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.020000 0.000000 0.010000
97 Flatlands 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.105263 0.000000 0.000000 0.000000 0.000000 0.052632 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.052632 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.105263 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.105263 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.052632 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.157895 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.052632 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
98 Floral Park 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.142857 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.285714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.142857 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
99 Flushing 0.016129 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.016129 0.00 0.000000 0.032258 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.064516 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016129 0.000000 0.00 0.0000 0.000000 0.000000 0.016129 0.000000 0.000000 0.000000 0.000000 0.000000 0.064516 0.00 0.00 0.016129 0.00 0.000000 0.000000 0.00 0.000000 0.016129 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.032258 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.016129 0.000000 0.00 0.000000 0.016129 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.016129 0.000000 0.00 0.000000 0.016129 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.016129 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.016129 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.032258 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016129 0.016129 0.0000 0.080645 0.016129 0.000000 0.016129 0.000000 0.000000 0.000000 0.000000 0.000000 0.016129 0.000000 0.000000 0.016129 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.000000 0.000000 0.00 0.048387 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016129 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016129 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.016129 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.016129 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016129 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016129 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.032258 0.000000 0.016129 0.016129 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.016129 0.000000 0.000000 0.016129 0.00 0.032258 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.016129 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.016129 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
100 Fordham 0.000000 0.011905 0.00 0.000000 0.011905 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.011905 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011905 0.000000 0.000000 0.000000 0.000000 0.011905 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.011905 0.000000 0.000000 0.011905 0.000000 0.011905 0.00 0.00 0.000000 0.00 0.000000 0.023810 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.023810 0.000000 0.000000 0.000000 0.000 0.000000 0.047619 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.023810 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.059524 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.023810 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011905 0.000000 0.023810 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.011905 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.011905 0.000000 0.000000 0.000000 0.000000 0.000000 0.011905 0.000000 0.000000 0.011905 0.000000 0.000000 0.000000 0.000000 0.000000 0.011905 0.000000 0.000000 0.011905 0.00 0.000000 0.000000 0.000000 0.023810 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.011905 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011905 0.071429 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011905 0.011905 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.011905 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.011905 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.035714 0.000000 0.000000 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023810 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.047619 0.000000 0.00 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.023810 0.035714 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.023810 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011905
101 Forest Hills 0.052632 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026316 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.026316 0.026316 0.026316 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026316 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026316 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.026316 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.026316 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.026316 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026316 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.078947 0.078947 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026316 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.026316 0.000000 0.000000 0.000000 0.000000 0.026316 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.026316 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.0000 0.000000 0.00 0.026316 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.026316 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.026316 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.026316 0.026316 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.052632 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.026316 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
102 Forest Hills Gardens 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.052632 0.105263 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.052632 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.00 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.052632 0.000000 0.052632 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.052632 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.052632 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
103 Fort Greene 0.028169 0.000000 0.00 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.014085 0.00 0.000000 0.000000 0.000000 0.000000 0.014085 0.014085 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.028169 0.042254 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.014085 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.014085 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.042254 0.000000 0.000000 0.014085 0.000000 0.000000 0.00 0.028169 0.000000 0.000000 0.000000 0.014085 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.014085 0.014085 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.056338 0.000000 0.014085 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.014085 0.000000 0.014085 0.000000 0.014085 0.000000 0.014085 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.014085 0.014085 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028169 0.00 0.000000 0.000000 0.000000 0.000000 0.028169 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.0000 0.028169 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.028169 0.000000 0.028169 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.014085 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.014085 0.000000 0.000000 0.014085 0.000000 0.000 0.014085 0.042254 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.014085 0.00 0.000000 0.000000 0.000000 0.014085 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.028169 0.028169 0.000000 0.000000
104 Fort Hamilton 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.028169 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.028169 0.014085 0.042254 0.014085 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028169 0.000000 0.000000 0.000000 0.014085 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028169 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.028169 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.056338 0.000000 0.00 0.000000 0.000000 0.028169 0.000000 0.000000 0.000000 0.000 0.000000 0.014085 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.000000 0.014085 0.00 0.000000 0.014085 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.042254 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.0000 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.042254 0.000000 0.028169 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.00 0.014085 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.014085 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.028169 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.042254 0.000000 0.014085 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028169 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.042254 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.014085 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.014085 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028169 0.000000 0.000000 0.00 0.014085 0.000000 0.000000 0.014085 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.000 0.000000 0.014085 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.014085 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000
105 Fox Hills 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.142857 0.285714 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.142857 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.142857 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
106 Fresh Meadows 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.214286 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.142857 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.071429 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.071429 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
107 Fulton Ferry 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.067797 0.016949 0.000000 0.000000 0.000000 0.016949 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.033898 0.000000 0.016949 0.000000 0.000000 0.000000 0.000000 0.016949 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.016949 0.016949 0.016949 0.000000 0.000000 0.000000 0.000000 0.016949 0.000000 0.000000 0.016949 0.000000 0.000000 0.000000 0.016949 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033898 0.000000 0.00 0.0000 0.000000 0.016949 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.016949 0.00 0.000000 0.033898 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.016949 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.016949 0.016949 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.016949 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.016949 0.000000 0.000000 0.000000 0.000000 0.000000 0.016949 0.000000 0.0000 0.000000 0.000000 0.000000 0.033898 0.016949 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016949 0.000000 0.016949 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.016949 0.016949 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.118644 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.016949 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.033898 0.000000 0.033898 0.000000 0.000000 0.000000 0.016949 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016949 0.000000 0.000000 0.00 0.000000 0.000000 0.016949 0.000000 0.000000 0.016949 0.000000 0.000000 0.00 0.050847 0.000000 0.000000 0.016949 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.016949 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.016949 0.0 0.016949 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016949 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
108 Georgetown 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.033333 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.033333 0.00 0.000000 0.033333 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.000 0.000000 0.066667 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.033333 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033333 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.033333 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.033333 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033333 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.033333 0.033333 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.033333 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033333
109 Gerritsen Beach 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.052632 0.000000 0.000000 0.105263 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.052632 0.052632 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.052632 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.105263 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.105263 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
110 Glen Oaks 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.050000 0.050000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.050000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.050000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.050000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.050000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
111 Glendale 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.166667 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.166667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.166667 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.166667 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.166667 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.166667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
112 Gowanus 0.015625 0.000000 0.00 0.000000 0.000000 0.000000 0.015625 0.000000 0.000000 0.000000 0.015625 0.031250 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.015625 0.00 0.015625 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031250 0.015625 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015625 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031250 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.015625 0.031250 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.015625 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.015625 0.00 0.046875 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.015625 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.015625 0.000000 0.000000 0.015625 0.00 0.000000 0.000000 0.000000 0.000000 0.046875 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.015625 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015625 0.000000 0.046875 0.000000 0.000000 0.000000 0.000000 0.015625 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.015625 0.015625 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.031250 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015625 0.000000 0.000000 0.00 0.015625 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015625 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015625 0.0000 0.015625 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015625 0.000000 0.000 0.000000 0.031250 0.000000 0.015625 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015625 0.015625 0.000000 0.000000 0.015625 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.015625 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.015625 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015625 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.015625 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.015625 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031250 0.000000 0.000000
113 Gramercy 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.030000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.040000 0.010000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.030000 0.030000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.000000 0.00 0.010000 0.000000 0.00 0.000000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.0000 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.040000 0.000000 0.020000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.010000 0.00 0.000000 0.01 0.000000 0.00 0.020000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.020000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.030000 0.000000 0.0 0.000000 0.00 0.010000 0.0000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000
114 Graniteville 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.333333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.333333 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.333333 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
115 Grant City 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037037 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.037037 0.00 0.000000 0.000000 0.000000 0.037037 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.074074 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.037037 0.000000 0.00 0.037037 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.037037 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.037037 0.00 0.000000 0.000000 0.000000 0.000000 0.037037 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.037037 0.000000 0.000000 0.000000 0.00 0.037037 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037037 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037037 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.037037 0.000000 0.000000 0.037037 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037037 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.037037 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.037037 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.037037 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037037 0.000000
116 Grasmere 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.047619 0.095238 0.095238 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.190476 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.047619 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.095238 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.047619 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
117 Gravesend 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.068966 0.000000 0.034483 0.034483 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034483 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.068966 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034483 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.034483 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.034483 0.000000 0.000000 0.000000 0.000 0.000000 0.034483 0.000000 0.00 0.000000 0.000000 0.00 0.034483 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.034483 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034483 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.068966 0.000000 0.000000 0.000000 0.034483 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.068966 0.000000 0.000000 0.034483 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.034483 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034483 0.034483 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.034483 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.103448 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034483 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.034483 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
118 Great Kills 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.043478 0.043478 0.130435 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.086957 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.130435 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.043478 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
119 Greenpoint 0.030000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.010000 0.020000 0.000000 0.090000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.060000 0.060000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.010000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.030000 0.010000 0.000000 0.010000 0.020000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.0000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.020000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.060000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.030000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000 0.010000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.010000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.010000 0.000000 0.000000
120 Greenridge 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.200000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
121 Greenwich Village 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.010000 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.020000 0.00 0.00 0.000000 0.00 0.000000 0.060000 0.00 0.020000 0.020000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.010000 0.000000 0.010000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.030000 0.000000 0.000000 0.000000 0.000000 0.01 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.020000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.0000 0.000000 0.000000 0.000000 0.020000 0.030000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.120000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.020000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.050000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.01 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.01 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
122 Grymes Hill 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.500000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.500000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
123 Hamilton Heights 0.033333 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.033333 0.016667 0.016667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.033333 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.033333 0.050000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.016667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.066667 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.016667 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.016667 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016667 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.016667 0.000000 0.000000 0.000000 0.016667 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016667 0.000000 0.016667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.016667 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.016667 0.000000 0.000000 0.016667 0.050000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033333 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033333 0.00 0.000000 0.033333 0.000000 0.016667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.016667 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.016667 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.033333 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.016667 0.000000 0.000000 0.000000
124 Hammels 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.333333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.055556 0.000000 0.000000 0.000000 0.055556 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.055556 0.000000 0.00 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000 0.055556 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.055556 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
125 Heartland Village 0.000000 0.100000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.200000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.100000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.100000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.100000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
126 High Bridge 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031250 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031250 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.062500 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.062500 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.031250 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.031250 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031250 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.031250 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.031250 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031250 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031250 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.156250 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.093750 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.062500 0.00 0.000000 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.031250 0.000000 0.00 0.000000 0.000000 0.031250 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.093750 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
127 Highland Park 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.058824 0.000000 0.000000 0.000000 0.00 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.117647 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.117647 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.117647 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.058824 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
128 Hillcrest 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.052632 0.052632 0.00 0.052632 0.00 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.105263 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.105263 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.052632 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
129 Hollis 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.055556 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.055556 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.055556 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
130 Holliswood 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.250000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.250000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.250000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.250000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
131 Homecrest 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.025000 0.100000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.025000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.00 0.00 0.000000 0.00 0.000000 0.025000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.025000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.075000 0.000000 0.00 0.000000 0.000000 0.00 0.025000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.025000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.075000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.025000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.025000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
132 Howard Beach 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.051282 0.000000 0.051282 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025641 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025641 0.00 0.00 0.000000 0.00 0.000000 0.025641 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.025641 0.025641 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.025641 0.000000 0.00 0.000000 0.000000 0.025641 0.000000 0.000000 0.000000 0.000 0.000000 0.025641 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.051282 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.025641 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.025641 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.051282 0.025641 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025641 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.025641 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.102564 0.000000 0.025641 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025641 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.025641 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.051282 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.051282 0.00 0.000000 0.000000 0.000000 0.025641 0.000000 0.000000 0.025641 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.025641 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.025641 0.000000 0.000000 0.025641 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.025641 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.025641 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
133 Hudson Yards 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.012500 0.000000 0.000000 0.000000 0.012500 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.012500 0.00 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012500 0.000000 0.000000 0.012500 0.012500 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.00 0.0125 0.000000 0.000000 0.000000 0.000000 0.012500 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.012500 0.00 0.012500 0.025000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.012500 0.000000 0.000000 0.00 0.012500 0.000000 0.000000 0.000000 0.012500 0.000000 0.000000 0.000000 0.000000 0.000000 0.012500 0.00 0.000000 0.00 0.012500 0.012500 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.025000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012500 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.012500 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012500 0.012500 0.000000 0.025000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012500 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.012500 0.0000 0.000000 0.000000 0.000000 0.012500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.012500 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012500 0.000000 0.000000 0.000000 0.000000 0.00 0.012500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.012500 0.000000 0.025000 0.0125 0.012500 0.00 0.012500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012500 0.000000 0.000000 0.012500 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.012500 0.000000 0.012500 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012500 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.012500 0.025000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012500 0.000000 0.000000 0.00 0.012500 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.012500 0.000000 0.000000 0.000000 0.000000 0.000 0.025000 0.012500 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.012500 0.012500 0.000000 0.000000
134 Huguenot 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.222222 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.111111 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.111111 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
135 Hunters Point 0.013514 0.000000 0.00 0.000000 0.000000 0.000000 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027027 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.013514 0.013514 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013514 0.000000 0.000000 0.000000 0.00 0.013514 0.000000 0.000000 0.000000 0.000000 0.000000 0.013514 0.000000 0.000000 0.000000 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.054054 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.027027 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.013514 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013514 0.000000 0.000000 0.013514 0.00 0.000000 0.00 0.027027 0.000000 0.00 0.013514 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.013514 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.013514 0.013514 0.000000 0.000000 0.000000 0.000000 0.013514 0.00 0.013514 0.013514 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.013514 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013514 0.013514 0.000000 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013514 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.054054 0.000000 0.040541 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.013514 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013514 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.013514 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013514 0.00 0.000000 0.000000 0.013514 0.000000 0.000000 0.000000 0.000000 0.013514 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013514 0.0000 0.000000 0.00 0.013514 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013514 0.000 0.000000 0.013514 0.000000 0.000000 0.013514 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013514 0.000000 0.000000 0.000000 0.000000 0.000000 0.013514 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.013514 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.013514 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.013514 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.013514 0.00 0.013514 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.027027 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.013514 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.027027 0.027027 0.000000 0.000000
136 Hunts Point 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.083333 0.00 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.083333 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
137 Inwood 0.016949 0.000000 0.00 0.000000 0.000000 0.000000 0.033898 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.050847 0.000000 0.016949 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.016949 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016949 0.000000 0.000000 0.000000 0.000000 0.050847 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.016949 0.000000 0.000000 0.000000 0.000000 0.033898 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.016949 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.033898 0.016949 0.00 0.000000 0.000000 0.016949 0.000000 0.000000 0.000000 0.000 0.016949 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.016949 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.016949 0.016949 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.033898 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016949 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.016949 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.016949 0.000000 0.000000 0.000000 0.000000 0.000000 0.016949 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016949 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.016949 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.050847 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.067797 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.016949 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033898 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.016949 0.016949 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.050847 0.000000 0.016949 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050847 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.016949 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.016949 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016949 0.000000 0.000000 0.00 0.016949 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.016949 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.033898 0.016949 0.000000 0.000000
138 Jackson Heights 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011905 0.000000 0.000000 0.000000 0.000000 0.011905 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.047619 0.000000 0.011905 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011905 0.000000 0.000000 0.011905 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011905 0.011905 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.011905 0.00 0.011905 0.011905 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.011905 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.011905 0.000000 0.000000 0.011905 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.011905 0.000000 0.00 0.011905 0.000000 0.035714 0.000000 0.000000 0.000000 0.000 0.000000 0.011905 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.023810 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.011905 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011905 0.023810 0.000000 0.011905 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011905 0.000000 0.000000 0.000000 0.011905 0.000000 0.000000 0.000000 0.000000 0.011905 0.00 0.000000 0.000000 0.000000 0.107143 0.011905 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.011905 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.047619 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.071429 0.000000 0.000000 0.000000 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.011905 0.000000 0.000000 0.000000 0.000000 0.011905 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.071429 0.00 0.000000 0.00 0.011905 0.023810 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011905 0.000000 0.000000 0.00 0.023810 0.023810 0.000000 0.011905 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.035714 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011905 0.000000 0.000000
139 Jamaica Center 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.021277 0.00 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.042553 0.000000 0.000000 0.000000 0.000000 0.021277 0.00 0.00 0.000000 0.00 0.000000 0.063830 0.00 0.000000 0.042553 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.021277 0.021277 0.00 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.000 0.000000 0.021277 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.00 0.000000 0.042553 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021277 0.021277 0.000000 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021277 0.00 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.021277 0.000000 0.042553 0.000000 0.000000 0.000000 0.085106 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.042553 0.00 0.000000 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.042553 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.063830 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021277 0.000000 0.00 0.000000 0.021277 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
140 Jamaica Estates 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.333333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.333333 0.000000 0.000000 0.000000 0.000000 0.333333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
141 Jamaica Hills 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.043478 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.043478 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.086957 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.086957 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.086957 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.086957 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.043478 0.130435 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.043478 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.043478 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
142 Kensington 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.027027 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027027 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.027027 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.027027 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.027027 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.027027 0.00 0.000000 0.000000 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.081081 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.054054 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.027027 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.027027 0.000000 0.000000 0.000000 0.027027 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027027 0.027027 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.027027 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.054054 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.054054 0.000000 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027027 0.000000 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027027 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.054054 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.027027 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.027027 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.081081 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
143 Kew Gardens 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.021277 0.000000 0.042553 0.042553 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.021277 0.021277 0.000000 0.000000 0.000000 0.021277 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.063830 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.021277 0.000000 0.042553 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.021277 0.000000 0.00 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000 0.000000 0.042553 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.021277 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.021277 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.042553 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.021277 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021277 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.042553 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.021277 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.042553 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021277 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021277 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.021277 0.00 0.000000 0.00 0.021277 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.021277 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021277 0.000000 0.021277 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
144 Kew Gardens Hills 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.050000 0.000000 0.150000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.050000 0.00 0.050000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.100000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.050000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.050000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.050000 0.000000 0.000000
145 Kingsbridge 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.061538 0.015385 0.046154 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015385 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015385 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015385 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015385 0.000000 0.00 0.0000 0.000000 0.015385 0.000000 0.015385 0.000000 0.000000 0.000000 0.000000 0.015385 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.015385 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.015385 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.030769 0.000000 0.00 0.000000 0.000000 0.015385 0.030769 0.000000 0.000000 0.000 0.000000 0.030769 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.015385 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.030769 0.000000 0.000000 0.015385 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015385 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.015385 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.046154 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015385 0.00 0.000000 0.000000 0.000000 0.000000 0.046154 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.015385 0.030769 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030769 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015385 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.046154 0.00 0.000000 0.000000 0.000000 0.015385 0.000000 0.000000 0.015385 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.015385 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.030769 0.000000 0.00 0.000000 0.015385 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.046154 0.015385 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.015385 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015385 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.015385 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015385 0.000000
146 Kingsbridge Heights 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.028571 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.085714 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.057143 0.000000 0.00 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.057143 0.00 0.000000 0.057143 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.028571 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.028571 0.000000 0.028571 0.028571 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.057143 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.00 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.028571 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.028571 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.028571 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
147 Laurelton 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.400000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.400000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.200000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
148 Lefrak City 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.040000 0.00 0.000000 0.080000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.080000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.080000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.040000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.00 0.000000 0.040000 0.040000 0.040000 0.040000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.040000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.00 0.040000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
149 Lenox Hill 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.010000 0.00 0.010000 0.020000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.01 0.040000 0.070000 0.010000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.010000 0.000000 0.000000 0.020000 0.01 0.000000 0.00 0.020000 0.000000 0.00 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.010000 0.010000 0.010000 0.030000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.070000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.020000 0.010000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.010000 0.050000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.020000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.010000 0.000000 0.00 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.030000 0.00 0.000000 0.010000 0.00000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000 0.020000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.020000 0.000000 0.010000
150 Lighthouse Hill 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.200000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.200000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
151 Lincoln Square 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.010000 0.020000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.00 0.0000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.01 0.010000 0.010000 0.00 0.000000 0.020000 0.000000 0.01 0.000000 0.01 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.050000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.00 0.000000 0.010000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.01 0.030000 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.010000 0.020000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.020000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.0000 0.040000 0.00 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.010000 0.060000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.050000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.020000 0.000000 0.000000
152 Lindenwood 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.076923 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.076923 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.076923 0.00 0.076923 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.076923 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.076923 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.076923 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.076923 0.000000 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
153 Little Italy 0.020000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.01 0.00 0.00 0.000000 0.000000 0.00 0.010000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.01 0.00 0.000000 0.00 0.000000 0.030000 0.00 0.030000 0.010000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.00 0.000000 0.000000 0.01 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.010000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.010000 0.0000 0.010000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.00 0.030000 0.000000 0.010000 0.000000 0.010000 0.010000 0.000000 0.010000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.01 0.000000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.010000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.010000 0.030000 0.030000 0.00 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.01 0.000000 0.00 0.000000 0.00 0.020000 0.010000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000 0.020000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.020000 0.000000 0.020000
154 Little Neck 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018519 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.037037 0.037037 0.018519 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018519 0.000000 0.018519 0.000000 0.000000 0.000000 0.000000 0.000000 0.037037 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.018519 0.000000 0.000000 0.000000 0.000000 0.000000 0.092593 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.037037 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.055556 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.018519 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.018519 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.018519 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.018519 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018519 0.000000 0.018519 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018519 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.018519 0.000000 0.000000 0.000000 0.000000 0.000000 0.018519 0.000000 0.000000 0.055556 0.000000 0.018519 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.018519 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.018519 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.018519 0.000000 0.0000 0.000000 0.00 0.018519 0.000000 0.000000 0.018519 0.018519 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.018519 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018519 0.00 0.000000 0.000000 0.000000 0.000000 0.018519 0.018519 0.018519 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.037037 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.018519 0.000000 0.000000 0.018519 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018519 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.018519 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
155 Long Island City 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.014085 0.000000 0.014085 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.014085 0.00 0.000000 0.000000 0.014085 0.056338 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.014085 0.014085 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.014085 0.000000 0.000000 0.014085 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.000000 0.042254 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028169 0.00 0.00 0.000000 0.00 0.014085 0.000000 0.00 0.014085 0.112676 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.028169 0.000000 0.00 0.014085 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.028169 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.042254 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.112676 0.000000 0.0000 0.000000 0.000000 0.000000 0.014085 0.014085 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.00 0.014085 0.000000 0.000000 0.000000 0.056338 0.000000 0.000000 0.000000 0.014085 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.056338 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.014085 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014085 0.000000 0.000000 0.00 0.014085 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.014085 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
156 Longwood 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.166667 0.000000 0.000000 0.000000 0.000 0.000000 0.166667 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.166667 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.166667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.166667 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.166667 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
157 Lower East Side 0.018182 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018182 0.036364 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.018182 0.036364 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018182 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.054545 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.054545 0.00 0.00 0.000000 0.00 0.000000 0.018182 0.00 0.036364 0.036364 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.018182 0.00 0.018182 0.000000 0.00 0.018182 0.018182 0.018182 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.018182 0.000000 0.000000 0.018182 0.00 0.000000 0.000000 0.000000 0.018182 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.018182 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.018182 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018182 0.000000 0.036364 0.000000 0.000000 0.000000 0.018182 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.018182 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.018182 0.000000 0.000000 0.000000 0.018182 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.018182 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018182 0.0000 0.018182 0.00 0.000000 0.018182 0.000000 0.000000 0.018182 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.054545 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.036364 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.018182 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018182 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.018182 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018182 0.000000 0.000 0.018182 0.036364 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.018182 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018182
158 Madison 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.166667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.083333 0.000000 0.00 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.083333 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.083333 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
159 Malba 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.500000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.500000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
160 Manhattan Beach 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.222222 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.111111 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
161 Manhattan Terrace 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.041667 0.083333 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.083333 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.041667 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.125000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.166667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
162 Manhattan Valley 0.037037 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018519 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.018519 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018519 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037037 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.018519 0.000000 0.000000 0.000000 0.000000 0.018519 0.00 0.00 0.000000 0.00 0.000000 0.018519 0.00 0.018519 0.055556 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.018519 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.018519 0.000000 0.00 0.000000 0.000000 0.018519 0.000000 0.000000 0.000000 0.000 0.018519 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.018519 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.018519 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.018519 0.000000 0.000000 0.000000 0.018519 0.00 0.000000 0.000000 0.000000 0.018519 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018519 0.000000 0.018519 0.000000 0.000000 0.000000 0.000000 0.000000 0.018519 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018519 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.018519 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018519 0.000000 0.018519 0.000000 0.000000 0.000000 0.018519 0.000000 0.000000 0.000000 0.00 0.018519 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.037037 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.018519 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037037 0.0000 0.000000 0.00 0.018519 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.037037 0.000000 0.018519 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.018519 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.018519 0.00 0.018519 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.018519 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.018519 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018519 0.018519 0.000000
163 Manhattanville 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.023256 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.023256 0.00 0.000000 0.000000 0.023256 0.023256 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.023256 0.000000 0.000000 0.000000 0.000000 0.023256 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023256 0.000000 0.000000 0.000000 0.000000 0.023256 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.046512 0.00 0.00 0.000000 0.00 0.023256 0.000000 0.00 0.000000 0.069767 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023256 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.023256 0.000000 0.00 0.000000 0.000000 0.023256 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.023256 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.023256 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.023256 0.000000 0.000000 0.000000 0.00 0.000000 0.023256 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.023256 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023256 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.023256 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.046512 0.023256 0.000000 0.000000 0.000000 0.000000 0.023256 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.046512 0.000000 0.023256 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.046512 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023256 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.046512 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023256 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.046512 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.023256 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.023256 0.000000 0.000000 0.046512 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
164 Manor Heights 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.090909 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.181818 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.181818 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.090909 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
165 Marble Hill 0.040000 0.000000 0.00 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.040000 0.00 0.000000 0.080000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.040000 0.040000 0.00 0.000000 0.000000 0.040000 0.040000 0.000000 0.000000 0.000 0.000000 0.040000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.120000 0.00 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.00 0.000000 0.040000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
166 Marine Park 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.111111 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.111111 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
167 Mariner's Harbor 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.142857 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.285714 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.285714 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.285714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
168 Maspeth 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.032258 0.064516 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.032258 0.000000 0.00 0.032258 0.000000 0.096774 0.032258 0.000000 0.000000 0.000 0.000000 0.032258 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.032258 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.000000 0.064516 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.032258 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.000000 0.032258 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.064516 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.032258 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.096774 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.032258 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.032258 0.00 0.000000 0.032258 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
169 Melrose 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.00 0.00 0.000000 0.00 0.000000 0.040000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.040000 0.00 0.000000 0.000000 0.040000 0.040000 0.000000 0.000000 0.000 0.000000 0.040000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.080000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.040000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.120000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.120000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.080000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.080000 0.040000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
170 Middle Village 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.062500 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.062500 0.000000 0.062500 0.062500 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.062500 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.062500 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.062500 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.062500 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.062500 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.062500 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.062500 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
171 Midland Beach 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.071429 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.142857 0.000000 0.00 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.071429 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
172 Midtown 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.030000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.010000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.00 0.01 0.000000 0.00 0.000000 0.040000 0.00 0.020000 0.040000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.010000 0.000000 0.000000 0.020000 0.00 0.000000 0.00 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.040000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.010000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.070000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.010000 0.010000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.030000 0.000000 0.000000 0.00 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.020000 0.00 0.010000 0.000000 0.02000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.040000 0.0 0.010000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000
173 Midtown South 0.020000 0.000000 0.00 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.020000 0.00 0.030000 0.030000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.000000 0.00 0.000000 0.010000 0.00 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.01 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.010000 0.000000 0.010000 0.00 0.000000 0.020000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.000000 0.000000 0.010000 0.010000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.040000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.150000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.01 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.00 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.010000 0.00 0.000000 0.000000 0.00 0.010000 0.00 0.000000 0.00 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000
174 Midwood 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.076923 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.076923 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.307692 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.076923 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
175 Mill Basin 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.054054 0.027027 0.054054 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027027 0.000000 0.000000 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.108108 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.054054 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.027027 0.000000 0.00 0.000000 0.000000 0.027027 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027027 0.00 0.000000 0.000000 0.027027 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027027 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027027 0.000000 0.081081 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.027027 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.027027 0.000000 0.000000 0.027027 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.081081 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.027027 0.000000 0.000000 0.027027 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
176 Mill Island 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
177 Morningside Heights 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023810 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.071429 0.000000 0.00 0.000000 0.00 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.047619 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.023810 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.023810 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.00 0.000000 0.000000 0.023810 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023810 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.023810 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023810 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023810 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.095238 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.023810 0.000000 0.047619 0.00 0.000000 0.000000 0.000000 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.023810 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.023810 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023810 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
178 Morris Heights 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.111111 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
179 Morris Park 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.095238 0.047619 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.095238 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.047619 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.095238 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.047619 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.190476 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.047619 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
180 Morrisania 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.041667 0.000000 0.00 0.000000 0.000000 0.000000 0.166667 0.000000 0.000000 0.000 0.000000 0.083333 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.00 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.00 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
181 Mott Haven 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.052632 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000 0.000000 0.105263 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.105263 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.052632 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.105263 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.105263 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
182 Mount Eden 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.026316 0.000000 0.000000 0.026316 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026316 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026316 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026316 0.000000 0.052632 0.00 0.00 0.000000 0.00 0.000000 0.026316 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.052632 0.000000 0.00 0.000000 0.000000 0.026316 0.026316 0.000000 0.000000 0.000 0.026316 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026316 0.00 0.000000 0.052632 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026316 0.026316 0.026316 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.026316 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.026316 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026316 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.078947 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026316 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.078947 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.105263 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.026316 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
183 Mount Hope 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.090909 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.090909 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.181818 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.090909 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.090909 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.090909 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.090909 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
184 Murray Hill 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.027211 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.006803 0.000000 0.000000 0.00 0.00 0.00 0.006803 0.006803 0.00 0.013605 0.013605 0.013605 0.034014 0.000000 0.000000 0.000000 0.006803 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.006803 0.000000 0.006803 0.000000 0.000000 0.000000 0.000000 0.000000 0.006803 0.013605 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020408 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.013605 0.047619 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.006803 0.000000 0.000000 0.013605 0.006803 0.006803 0.000000 0.00 0.000000 0.00 0.006803 0.000000 0.00 0.006803 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.006803 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.006803 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.013605 0.013605 0.000000 0.000000 0.006803 0.00 0.000000 0.000000 0.000000 0.006803 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.006803 0.000000 0.013605 0.020408 0.020408 0.000000 0.000000 0.000000 0.000000 0.000000 0.006803 0.006803 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020408 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.006803 0.000000 0.000000 0.000000 0.000000 0.006803 0.000000 0.000000 0.020408 0.000000 0.034014 0.006803 0.000000 0.013605 0.006803 0.006803 0.000000 0.000000 0.00 0.149660 0.000000 0.000000 0.006803 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.006803 0.000000 0.006803 0.000000 0.000000 0.006803 0.000000 0.000000 0.00 0.013605 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.006803 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.006803 0.000000 0.000000 0.000000 0.000000 0.006803 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.006803 0.000000 0.006803 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.013605 0.000000 0.000000 0.006803 0.006803 0.000000 0.000000 0.000000 0.000000 0.000000 0.020408 0.000000 0.000000 0.006803 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.006803 0.000000 0.013605 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034014 0.00 0.000000 0.000000 0.000000 0.006803 0.000000 0.006803 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.006803 0.006803 0.006803 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013605 0.000000 0.000000 0.00 0.013605 0.000000 0.000000 0.013605 0.00 0.000000 0.006803 0.00000 0.000000 0.000000 0.000000 0.000000 0.006803 0.000000 0.006803 0.000 0.006803 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.006803 0.00 0.000000 0.000000 0.000000 0.006803 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.006803 0.000000 0.000000 0.000000
185 Neponsit 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
186 New Brighton 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.363636 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.181818 0.000000 0.00 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.181818 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
187 New Dorp 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.035714 0.035714 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035714 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.035714 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.035714 0.000000 0.00 0.035714 0.035714 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.107143 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035714 0.035714 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.035714 0.00 0.000000 0.035714 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.035714 0.000000 0.035714 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
188 New Dorp Beach 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.166667 0.000000 0.00 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.166667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333
189 New Lots 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.050000 0.000000 0.000000 0.050000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.100000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
190 New Springville 0.000000 0.045455 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.090909 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.090909 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.045455 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.045455 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.045455 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.045455 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
191 Noho 0.020000 0.000000 0.01 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.010000 0.030000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.01 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.030000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.01 0.050000 0.030000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.050000 0.000000 0.000000 0.000000 0.010000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.010000 0.010000 0.030000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0100 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.010000 0.0000 0.000000 0.000000 0.000000 0.020000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.060000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.010000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.030000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.010000 0.00 0.010000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.020000 0.01000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.010000 0.010000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.01 0.000000 0.000000 0.000000 0.000000 0.01 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.020000 0.020000 0.000000 0.000000
192 North Corona 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.166667 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.041667 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.041667 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.041667 0.00 0.000000 0.00 0.000000 0.125000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
193 North Riverdale 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.045455 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.045455 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.045455 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.045455 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.136364 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.045455 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.045455 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
194 North Side 0.030000 0.000000 0.01 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.010000 0.010000 0.010000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.010000 0.00 0.010000 0.020000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.020000 0.00 0.00 0.000000 0.00 0.000000 0.010000 0.00 0.020000 0.060000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000 0.000000 0.010000 0.000000 0.00 0.000000 0.010000 0.00 0.000000 0.000000 0.010000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.020000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.0000 0.000000 0.000000 0.000000 0.020000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.000000 0.030000 0.000000 0.020000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.010000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010 0.010000 0.050000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.010000 0.00 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.020000 0.00 0.000000 0.00 0.000000 0.000000 0.010000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.010000
195 Norwood 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033333 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.033333 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.066667 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033333 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.133333 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.033333 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.133333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033333 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.033333 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.033333 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
196 Oakland Gardens 0.083333 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.041667 0.041667 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.00 0.00 0.000000 0.00 0.000000 0.041667 0.00 0.000000 0.041667 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.041667 0.000000 0.00 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.041667 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.125000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.041667 0.041667 0.000000 0.041667 0.00 0.000000 0.000000 0.00000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.041667 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
197 Oakwood 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.250000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.250000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.250000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.250000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
198 Ocean Hill 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033333 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.033333 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.100000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.033333 0.000000 0.00 0.033333 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.066667 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.066667 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033333 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.033333 0.000000 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.066667 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.033333 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
199 Ocean Parkway 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.041667 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.041667 0.000000 0.000000 0.000000 0.041667 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.041667 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.041667 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.083333 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.041667 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.00 0.041667 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
200 Old Town 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.05 0.000000 0.000000 0.00 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.050000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.200000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.050000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
201 Olinville 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.100000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.100000 0.100000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.100000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
202 Ozone Park 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.057143 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.028571 0.00 0.028571 0.028571 0.00 0.000000 0.000000 0.057143 0.000000 0.000000 0.000000 0.000 0.000000 0.028571 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.028571 0.00 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.057143 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.028571 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.028571 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.085714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.085714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.028571 0.000000 0.00 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.028571 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
203 Paerdegat Basin 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.333333 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.333333 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.333333 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
204 Park Hill 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.285714 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.285714 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.142857 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.142857 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
205 Park Slope 0.014286 0.014286 0.00 0.000000 0.000000 0.000000 0.057143 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.028571 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.057143 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.014286 0.000000 0.000000 0.000000 0.000000 0.028571 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.071429 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.014286 0.000000 0.000000 0.000000 0.000000 0.014286 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.014286 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.014286 0.000000 0.014286 0.000000 0.028571 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014286 0.000000 0.000000 0.000000 0.014286 0.014286 0.000000 0.014286 0.000000 0.000000 0.000000 0.000000 0.014286 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.014286 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.042857 0.000000 0.028571 0.000000 0.000000 0.000000 0.014286 0.000000 0.000000 0.014286 0.00 0.014286 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014286 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014286 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014286 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014286 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.014286 0.00 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.014286 0.042857 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014286 0.000000 0.000000 0.014286 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014286 0.000000 0.00 0.000000 0.000000 0.000000 0.014286 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.028571 0.000000 0.000000 0.00 0.014286 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.014286 0.00 0.000000 0.014286 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.014286 0.014286 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.014286 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.014286 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014286 0.000000 0.000000
206 Parkchester 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.057143 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.057143 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.028571 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.028571 0.028571 0.00 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.028571 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.028571 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.057143 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.00 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.028571 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.085714 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.028571 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.142857 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.028571 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.085714
207 Pelham Bay 0.025000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.025000 0.00 0.025000 0.025000 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.050000 0.000000 0.00 0.000000 0.000000 0.025000 0.000000 0.000000 0.025000 0.025 0.000000 0.050000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.075000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.025000 0.025000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.050000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.025000 0.000000 0.000000 0.00 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.025000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.025000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
208 Pelham Gardens 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.095238 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.047619 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.095238 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.095238 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.095238 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.047619 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
209 Pelham Parkway 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.043478 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.086957 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.086957 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.043478 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.043478 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.086957 0.000000 0.000000 0.00 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.086957 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.043478 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.086957 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.043478 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.043478 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
210 Pleasant Plains 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000 0.000000 0.142857 0.000000 0.00 0.071429 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
211 Pomonok 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.090909 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.090909 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.090909 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
212 Port Ivory 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
213 Port Morris 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000 0.000000 0.071429 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.00 0.000000 0.000000 0.000000 0.000000 0.071429 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.0000 0.000000 0.00 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.071429 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
214 Port Richmond 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.250000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.250000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.250000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.250000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
215 Prince's Bay 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.090909 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.090909 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.090909 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.181818 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.090909 0.00 0.000000 0.000000 0.00000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
216 Prospect Heights 0.012987 0.000000 0.00 0.000000 0.000000 0.000000 0.025974 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.012987 0.025974 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025974 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012987 0.012987 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012987 0.000000 0.000000 0.038961 0.012987 0.00 0.0000 0.000000 0.000000 0.000000 0.012987 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.012987 0.00 0.038961 0.025974 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.012987 0.000000 0.00 0.000000 0.000000 0.025974 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.012987 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.012987 0.000000 0.012987 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.012987 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025974 0.012987 0.000000 0.012987 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.025974 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012987 0.000000 0.012987 0.000000 0.012987 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.012987 0.000000 0.000000 0.012987 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.038961 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012987 0.012987 0.025974 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012987 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.025974 0.000000 0.012987 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012987 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025974 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012987 0.012987 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.012987 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.012987 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.038961 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.012987 0.000000 0.000000 0.012987 0.00 0.000000 0.000000 0.000000 0.012987 0.00 0.000000 0.000000 0.000000 0.000000 0.012987 0.025974 0.038961 0.000000 0.000000
217 Prospect Lefferts Gardens 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.020833 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.020833 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.020833 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.020833 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.041667 0.000000 0.00 0.000000 0.000000 0.000000 0.020833 0.000000 0.020833 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.020833 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.020833 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020833 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.041667 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020833 0.000000 0.000000 0.020833 0.000000 0.000000 0.020833 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020833 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.020833 0.020833 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020833 0.020833 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020833 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.020833 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.020833 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.041667 0.000000 0.000000 0.041667 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000
218 Prospect Park South 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.020000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.080000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.020000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.040000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.020000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.060000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.040000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.060000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.020000 0.060000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.020000 0.060000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.060000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.020000 0.00 0.000000 0.000000 0.000000 0.00 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.020000 0.000000 0.000000 0.000000 0.00 0.000000 0.020000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.020000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.020000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000
219 Queens Village 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.071429 0.142857 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.071429 0.00 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000 0.000000 0.071429 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.071429 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.071429 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.071429 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
220 Queensboro Hill 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.040000 0.080000 0.080000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.120000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.040000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.040000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.040000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.040000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.040000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
221 Queensbridge 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.062500 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.062500 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.187500 0.062500 0.0625 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.062500 0.0000 0.062500 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.062500 0.00 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.062500 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
222 Randall Manor 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.400000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.200000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.200000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
223 Ravenswood 0.000000 0.000000 0.00 0.038462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.038462 0.000000 0.000000 0.038462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.038462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.115385 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.038462 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.038462 0.000000 0.00 0.000000 0.000000 0.038462 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.038462 0.000000 0.000000 0.038462 0.00 0.000000 0.038462 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.038462 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.038462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.038462 0.000000 0.038462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.038462 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.038462 0.000000 0.038462 0.000000 0.038462 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.038462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.038462 0.00 0.000000 0.038462 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
224 Red Hook 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.061224 0.020408 0.000000 0.000000 0.000000 0.081633 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.020408 0.00 0.040816 0.020408 0.000000 0.061224 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.020408 0.000000 0.000000 0.000000 0.000000 0.000000 0.020408 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020408 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.020408 0.00 0.000000 0.020408 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.020408 0.020408 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.020408 0.00 0.000000 0.000000 0.040816 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.040816 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.020408 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020408 0.000000 0.000000 0.000000 0.000000 0.020408 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.040816 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.020408 0.000000 0.000000 0.000000 0.000000 0.040816 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.061224 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020408 0.000000 0.000 0.000000 0.020408 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020408 0.000000 0.000000 0.000000 0.020408 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020408 0.00 0.000000 0.000000 0.000000 0.081633 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040816 0.000000 0.000000
225 Rego Park 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.047619 0.095238 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023810 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.023810 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.023810 0.000000 0.000000 0.000000 0.000 0.000000 0.047619 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.023810 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023810 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023810 0.000000 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.023810 0.000000 0.000000 0.000000 0.023810 0.023810 0.000000 0.000000 0.00 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.023810 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.047619 0.000000 0.000000 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.023810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.023810 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.023810 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.047619 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
226 Remsen Village 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.176471 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.058824 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.058824 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.058824 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.117647 0.000000 0.000000 0.00 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.058824 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.058824 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.058824 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
227 Richmond Hill 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.038462 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.038462 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.038462 0.000000 0.00 0.000000 0.000000 0.038462 0.038462 0.000000 0.000000 0.000 0.000000 0.038462 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.038462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.038462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.076923 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.038462 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.038462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.038462 0.0000 0.000000 0.00 0.000000 0.000000 0.038462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.038462 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.038462 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.038462 0.000000 0.000000 0.000000 0.00 0.000000 0.038462 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
228 Richmond Town 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.200000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.200000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
229 Richmond Valley 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.166667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.083333 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.083333 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.166667 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
230 Ridgewood 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.054054 0.054054 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027027 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.027027 0.000000 0.00 0.000000 0.000000 0.027027 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.054054 0.027027 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027027 0.000000 0.000000 0.000000 0.000000 0.054054 0.054054 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.027027 0.027027 0.000000 0.000000 0.000000 0.054054 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.027027 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.054054 0.000000 0.054054 0.000000 0.000000 0.027027 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027027 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027027 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.027027 0.000000 0.027027 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.027027 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.027027 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
231 Riverdale 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.090909 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.181818 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.090909 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.181818 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.090909 0.090909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
232 Rochdale 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.058824 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.117647 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.058824 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.117647 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
233 Rockaway Beach 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.039216 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.039216 0.00 0.039216 0.000000 0.000000 0.019608 0.000000 0.000000 0.000000 0.000000 0.156863 0.019608 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.019608 0.000000 0.000000 0.000000 0.000000 0.000000 0.019608 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019608 0.000000 0.019608 0.019608 0.000000 0.019608 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.019608 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019608 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.019608 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.019608 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.019608 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.039216 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.039216 0.00 0.000000 0.019608 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019608 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019608 0.019608 0.000000 0.0000 0.000000 0.000000 0.000000 0.039216 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019608 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.039216 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.019608 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.019608 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019608 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.039216 0.000000 0.000000 0.000000 0.019608 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.019608 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.019608 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.019608 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.019608 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.019608 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
234 Rockaway Park 0.041667 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.041667 0.000000 0.00 0.041667 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.166667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.041667 0.000000 0.00 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000 0.000000 0.083333 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.041667 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.00 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.041667 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
235 Roosevelt Island 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033333 0.033333 0.000000 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.066667 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.033333 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.033333 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033333 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.033333 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.066667 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.033333 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.066667 0.00 0.033333 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.033333 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.033333 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.033333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
236 Rosebank 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.040000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.040 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.040000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.080000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.080000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.080000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.040000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
237 Rosedale 0.000000 0.066667 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.133333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.066667 0.000000 0.000000 0.000000 0.000000 0.066667 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.066667 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.066667 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.066667 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.066667 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.066667 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
238 Rossville 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.187500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.062500 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.062500 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.062500 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.187500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
239 Roxbury 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.142857 0.000000 0.000000 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.142857 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.142857 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
240 Rugby 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.055556 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.055556 0.00 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.111111 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000
241 Sandy Ground 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.100000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
242 Schuylerville 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.095238 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.095238 0.095238 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000 0.000000 0.047619 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.047619 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.095238 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.095238 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.095238 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.047619 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
243 Sea Gate 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.166667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.166667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.166667 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.166667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.166667 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.166667 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
244 Sheepshead Bay 0.043478 0.000000 0.00 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.130435 0.000000 0.043478 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.086957 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.130435 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
245 Shore Acres 0.040000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.040000 0.000000 0.000000 0.080000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.120000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.120000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.040000 0.00 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.080000 0.000000 0.000000 0.120000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.040000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.040000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
246 Silver Lake 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.333333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.333333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.333333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
247 Soho 0.020000 0.010000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.040000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.01 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.060000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.100000 0.00 0.010000 0.020000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.00 0.010000 0.00 0.000000 0.000000 0.01 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.020000 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.010000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.030000 0.000000 0.030000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.020000 0.000000 0.00 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.01 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.01 0.000000 0.00 0.000000 0.00 0.020000 0.010000 0.000000 0.00 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.010000 0.010000 0.010000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.040000
248 Somerville 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
249 Soundview 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.058824 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.176471 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.058824 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.117647 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.058824 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
250 South Beach 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.142857 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.285714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.142857 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.285714 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
251 South Jamaica 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.142857 0.285714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.142857 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.142857 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
252 South Ozone Park 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.214286 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.071429 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.142857 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.071429 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.214286 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
253 South Side 0.030000 0.000000 0.00 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.010000 0.00 0.010000 0.010000 0.000000 0.070000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.01 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.030000 0.00 0.00 0.000000 0.00 0.000000 0.010000 0.00 0.020000 0.060000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.020000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.020000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.010000 0.000000 0.020000 0.010000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010 0.010000 0.060000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.00 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.020000 0.00 0.000000 0.00 0.000000 0.000000 0.010000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.010000 0.00000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.010000
254 Springfield Gardens 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.111111 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.055556 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.111111 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.111111 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055556 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
255 Spuyten Duyvil 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.250000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.083333 0.000 0.083333 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
256 St. Albans 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.062500 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.187500 0.000000 0.000000 0.000000 0.000000 0.062500 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.062500 0.00 0.062500 0.000000 0.00 0.000000 0.000000 0.000000 0.062500 0.000000 0.000000 0.000 0.000000 0.062500 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.125000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.062500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.062500 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
257 St. George 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.057143 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.057143 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.171429 0.00 0.000000 0.028571 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.028571 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.057143 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.028571 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.028571 0.000000 0.028571 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.028571 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.057143 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.028571 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.028571 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
258 Stapleton 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.058824 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.058824 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.029412 0.000000 0.00 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000 0.000000 0.029412 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.0000 0.029412 0.00 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.088235 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.058824 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.029412 0.000000 0.00 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
259 Starrett City 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.083333 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.083333 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.083333 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.083333 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.083333 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
260 Steinway 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.045455 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.045455 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.045455 0.000000 0.00 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.045455 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.000000 0.045455 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.045455 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.136364 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.045455 0.000000 0.000000 0.045455 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.000000 0.045455
261 Stuyvesant Town 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.100000 0.050000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.150000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.050000 0.050000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.05 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.050000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.100000 0.0000 0.000000 0.00 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
262 Sunnyside 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.021739 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.043478 0.000000 0.021739 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021739 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.00 0.00 0.000000 0.00 0.000000 0.021739 0.00 0.000000 0.043478 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.021739 0.000000 0.00 0.000000 0.000000 0.021739 0.043478 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.021739 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.021739 0.021739 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.065217 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.021739 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.021739 0.000000 0.000000 0.000000 0.021739 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021739 0.0000 0.000000 0.00 0.021739 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.108696 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021739 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021739 0.000000 0.000000 0.00 0.000000 0.021739 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.021739 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.043478 0.00 0.000000 0.00 0.021739 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.021739 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.043478 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
263 Sunnyside Gardens 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.010000 0.030000 0.070000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.030000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.020000 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000 0.020000 0.010000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.00 0.020000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.060000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.000000 0.0100 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.030000 0.000000 0.000000 0.010000 0.000000 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.020000 0.010000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.020000 0.000000 0.000000 0.010000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.040000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.010000 0.010000 0.000000 0.00 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.01 0.020000 0.010000 0.000000 0.020000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.030000 0.000000 0.0 0.000000 0.00 0.010000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.030000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000
264 Sunset Park 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.085714 0.085714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.057143 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.057143 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.057143 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.085714 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.085714 0.000000 0.000000 0.000000 0.057143 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.057143 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.085714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.028571 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.028571 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028571
265 Sutton Place 0.020000 0.000000 0.01 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.010000 0.020000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.020000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.01 0.0000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.030000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.010000 0.00 0.000000 0.00 0.010000 0.020000 0.01 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.01 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.040000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.020000 0.030000 0.060000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.0000 0.000000 0.000000 0.000000 0.020000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.0000 0.000000 0.01 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.010000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.010000 0.000000 0.010000 0.01 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.01 0.000000 0.000000 0.000000 0.020000 0.00 0.010000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000 0.010000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.000000
266 Throgs Neck 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.100000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.200000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
267 Todt Hill 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
268 Tompkinsville 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.035714 0.00 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.035714 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035714 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071429 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.071429 0.000000 0.000000 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.035714 0.000000 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.035714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035714 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.035714 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.035714 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.071429 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035714 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
269 Tottenville 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.125000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.125000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.125000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.125000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.125000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.125000 0.000000 0.000000 0.125000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.125000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
270 Travis 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.117647 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.117647 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.058824 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.176471 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.058824 0.000000 0.00 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
271 Tribeca 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.020000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.00 0.000000 0.00 0.000000 0.010000 0.00 0.020000 0.030000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.020000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.010000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.030000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.01 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.00 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.0000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.010000 0.000000 0.020000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.020000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.040000 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.020000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.010000 0.01 0.000000 0.000000 0.000000 0.000000 0.010000 0.030000 0.030000 0.000000 0.000000
272 Tudor City 0.012346 0.000000 0.00 0.000000 0.000000 0.000000 0.012346 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024691 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.012346 0.000000 0.012346 0.012346 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012346 0.000000 0.000000 0.000000 0.012346 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.061728 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.024691 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.012346 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.037037 0.000000 0.00 0.000000 0.000000 0.024691 0.000000 0.000000 0.000000 0.000 0.024691 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012346 0.00 0.012346 0.000000 0.000000 0.000000 0.000000 0.00 0.024691 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.049383 0.000000 0.024691 0.012346 0.000000 0.000000 0.000000 0.000000 0.000000 0.012346 0.000000 0.000000 0.012346 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012346 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012346 0.000000 0.012346 0.000000 0.000000 0.012346 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.012346 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.012346 0.012346 0.000000 0.012346 0.000000 0.000000 0.012346 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.061728 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.012346 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.061728 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.012346 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.049383 0.000000 0.000000 0.012346 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024691 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.012346 0.012346 0.012346 0.00 0.000000 0.000000 0.000000 0.012346 0.000000 0.012346 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.012346 0.012346 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.024691 0.00 0.000000 0.012346 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012346 0.000000 0.000 0.024691 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012346 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.012346 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012346 0.000000 0.000000
273 Turtle Bay 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.010000 0.050000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.01 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.030000 0.000000 0.000000 0.000000 0.000000 0.00 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.020000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.060000 0.010000 0.030000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.030000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.010000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.010000 0.000000 0.000000 0.010000 0.00 0.010000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.01 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.050000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000 0.020000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000
274 Unionport 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.043478 0.00 0.043478 0.000000 0.00 0.000000 0.000000 0.043478 0.043478 0.000000 0.000000 0.000 0.000000 0.086957 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.043478 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.086957 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.086957 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043478 0.00 0.000000 0.000000 0.000000 0.043478 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.043478 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
275 University Heights 0.000000 0.000000 0.00 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.052632 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.052632 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.052632 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.052632 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.105263 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.052632 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000
276 Upper East Side 0.020000 0.000000 0.00 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.050000 0.020000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.050000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.01 0.00 0.000000 0.00 0.000000 0.010000 0.00 0.020000 0.040000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.00 0.000000 0.0000 0.000000 0.07 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.030000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.020000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.010000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.080000 0.000000 0.010000 0.010000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.01 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.020000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.00 0.000000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.020000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.010000
277 Upper West Side 0.020000 0.010000 0.00 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.000000 0.000000 0.01 0.00 0.00 0.000000 0.000000 0.00 0.010000 0.030000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.040000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.010000 0.00 0.000000 0.000000 0.00 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.010000 0.000000 0.000000 0.01 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.020000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.060000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.030000 0.000000 0.000000 0.000000 0.010000 0.020000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.010000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.010000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.010000 0.00 0.000000 0.000000 0.010000 0.00 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.020000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.00 0.010000 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.010000 0.000000 0.000000
278 Utopia 0.000000 0.000000 0.00 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.066667 0.000000 0.00 0.000000 0.066667 0.000000 0.000000 0.000000 0.000000 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.200000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.066667 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.066667 0.000000 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.066667 0.000000 0.066667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.066667 0.00 0.000000 0.00 0.066667 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
279 Van Nest 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.050000 0.00 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.050000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.050000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.200000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.050000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.200000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.050000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.050000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
280 Vinegar Hill 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.034483 0.034483 0.000000 0.000000 0.000000 0.068966 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.034483 0.000000 0.034483 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034483 0.00 0.000000 0.000000 0.000000 0.000000 0.034483 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.068966 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.068966 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.034483 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.172414 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.034483 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.034483 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.034483 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034483 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034483 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.034483 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.034483 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.034483 0.034483 0.068966 0.000000 0.000000
281 Wakefield 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.125000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.125000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.125000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.125000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.125000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.125000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.125000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.125000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
282 Washington Heights 0.000000 0.011364 0.00 0.000000 0.000000 0.000000 0.011364 0.000000 0.000000 0.011364 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.045455 0.011364 0.011364 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011364 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011364 0.000000 0.000000 0.000000 0.011364 0.000000 0.000000 0.000000 0.056818 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.011364 0.000000 0.000000 0.000000 0.000000 0.034091 0.00 0.00 0.000000 0.00 0.000000 0.011364 0.00 0.011364 0.022727 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.022727 0.000000 0.00 0.000000 0.000000 0.011364 0.000000 0.000000 0.000000 0.000 0.000000 0.022727 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.011364 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045455 0.022727 0.011364 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.011364 0.011364 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011364 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011364 0.00 0.000000 0.000000 0.000000 0.034091 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.011364 0.000000 0.011364 0.000000 0.011364 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.011364 0.000000 0.022727 0.000000 0.000000 0.000000 0.034091 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022727 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.011364 0.022727 0.0000 0.000000 0.00 0.000000 0.011364 0.000000 0.011364 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.022727 0.000000 0.000000 0.011364 0.000000 0.000000 0.011364 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011364 0.000000 0.000000 0.000000 0.011364 0.000000 0.000000 0.000000 0.011364 0.011364 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011364 0.00 0.011364 0.000000 0.000000 0.011364 0.000000 0.000000 0.011364 0.011364 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.022727 0.000000 0.00 0.011364 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.011364 0.022727 0.000000 0.011364 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.022727 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.011364 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.011364 0.022727 0.000000 0.011364
283 Weeksville 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.105263 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.052632 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.052632 0.000000 0.00 0.000000 0.000000 0.000000 0.105263 0.000000 0.000000 0.000 0.000000 0.052632 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.105263 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.052632 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052632 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.052632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
284 West Brighton 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.025000 0.000000 0.050000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.025000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.075000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.050000 0.000000 0.00 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.025000 0.00 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.025000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.025000 0.000000 0.000000 0.025000 0.00 0.000000 0.025000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000
285 West Farms 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.190476 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.047619 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000 0.000000 0.095238 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.095238 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047619 0.00 0.047619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.047619 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
286 West Village 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.01 0.00 0.000000 0.000000 0.00 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.01 0.000000 0.010000 0.010000 0.000000 0.010000 0.010000 0.000000 0.000000 0.010000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.0000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.040000 0.030000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.010000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.020000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.030000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.090000 0.000000 0.020000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.01 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.060000 0.01 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.01 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.0000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.010000 0.00 0.000000 0.010000 0.00000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000 0.000000 0.020000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.040000 0.010000 0.000000 0.000000
287 Westchester Square 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.032258 0.032258 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.000000 0.000000 0.032258 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.032258 0.00 0.000000 0.000000 0.032258 0.032258 0.000000 0.000000 0.000 0.000000 0.064516 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.096774 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.064516 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.032258 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.032258 0.032258 0.000000 0.000000 0.000000 0.032258 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.064516 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.064516 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032258 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.064516 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.032258 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.032258 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
288 Westerleigh 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.500000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.500000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
289 Whitestone 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.250000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.250000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.250000 0.00 0.250000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
290 Williamsbridge 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.250000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.250000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.250000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.25 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
291 Williamsburg 0.029412 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.058824 0.000000 0.000000 0.088235 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.029412 0.00 0.000000 0.088235 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.029412 0.000000 0.00 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.029412 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.029412 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.029412 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.029412 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.029412 0.00000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.029412 0.000000 0.000000 0.000000
292 Willowbrook 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.125000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.375000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.125000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.125000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.125000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.125000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
293 Windsor Terrace 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.037037 0.037037 0.000000 0.000000 0.000000 0.000000 0.000000 0.037037 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.037037 0.000000 0.000000 0.037037 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037037 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.037037 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037037 0.000000 0.074074 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037037 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.037037 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.037037 0.000000 0.00 0.000000 0.000000 0.074074 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.037037 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.074074 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037037 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.037037 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.074074 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.074074 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.037037 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.037037 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037037 0.000000 0.000000
294 Wingate 0.000000 0.000000 0.00 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.058824 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.058824 0.000000 0.00 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000 0.000000 0.058824 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.117647 0.058824 0.000000 0.00 0.058824 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.058824 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.058824 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
295 Woodhaven 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.038462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.038462 0.000000 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.038462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.115385 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.038462 0.000 0.000000 0.038462 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.038462 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.038462 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.038462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.038462 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.038462 0.038462 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.038462 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.038462 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.038462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.038462 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.038462 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.038462 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.038462 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.038462 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
296 Woodlawn 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.000000 0.041667 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.166667 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.041667 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.125000 0.000000 0.083333 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.041667 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041667 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
297 Woodrow 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.050000 0.050000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.050000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.050000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000 0.000000 0.050000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.050000 0.000000 0.000000 0.050000 0.000000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.100000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.050000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.050000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
298 Woodside 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.037500 0.000000 0.000000 0.012500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.012500 0.050000 0.012500 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012500 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.012500 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.012500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.00 0.037500 0.000000 0.00 0.000000 0.000000 0.012500 0.000000 0.000000 0.000000 0.000 0.000000 0.037500 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.012500 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.012500 0.000000 0.050000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012500 0.00 0.000000 0.000000 0.000000 0.012500 0.000000 0.00 0.000000 0.000000 0.000000 0.012500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.075000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0125 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.012500 0.000000 0.000000 0.050000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.012500 0.012500 0.000000 0.000000 0.000000 0.012500 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.025000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.037500 0.000000 0.012500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012500 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012500 0.025000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.025000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.012500 0.000000 0.000000 0.000 0.062500 0.000000 0.0 0.000000 0.00 0.000000 0.0125 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012500 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012500 0.000000 0.000000
299 Yorkville 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.010000 0.000000 0.00 0.00 0.00 0.000000 0.000000 0.00 0.020000 0.030000 0.010000 0.060000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.010000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.000000 0.00 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.00 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.060000 0.000000 0.00 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.01 0.040000 0.000000 0.00 0.010000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.060000 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.020000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.070000 0.000000 0.030000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.010000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.00 0.00 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020000 0.0000 0.000000 0.00 0.010000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000 0.000000 0.040000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000000 0.020000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.00 0.000000 0.00 0.000000 0.00 0.010000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.000000 0.030000 0.00 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.010000 0.000000 0.000000 0.000 0.010000 0.000000 0.0 0.000000 0.00 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.00 0.000000 0.000000 0.000000 0.000000 0.00 0.000000 0.000000 0.010000 0.020000 0.00 0.000000 0.000000 0.000000 0.000000 0.000000 0.010000 0.030000 0.000000 0.000000

Let's confirm the new size

In [33]:
newyork_grouped.shape
Out[33]:
(300, 429)

Let's print each neighborhood along with the top 5 most common venues

In [35]:
num_top_venues = 5

for hood in newyork_grouped['Neighborhood']:
    print("----"+hood+"----")
    temp = newyork_grouped[newyork_grouped['Neighborhood'] == hood].T.reset_index()
    temp.columns = ['venue','freq']
    temp = temp.iloc[1:]
    temp['freq'] = temp['freq'].astype(float)
    temp = temp.round({'freq': 2})
    print(temp.sort_values('freq', ascending=False).reset_index(drop=True).head(num_top_venues))
    print('\n')
----Allerton----
                venue  freq
0         Pizza Place  0.14
1         Supermarket  0.10
2         Bus Station  0.07
3       Deli / Bodega  0.07
4  Spanish Restaurant  0.07


----Annadale----
           venue  freq
0    Pizza Place  0.23
1         Bakery  0.15
2          Diner  0.08
3           Park  0.08
4  Train Station  0.08


----Arden Heights----
           venue  freq
0       Pharmacy   0.2
1  Deli / Bodega   0.2
2    Coffee Shop   0.2
3       Bus Stop   0.2
4    Pizza Place   0.2


----Arlington----
               venue  freq
0      Grocery Store  0.25
1      Deli / Bodega  0.25
2         Playground  0.25
3     Scenic Lookout  0.25
4  Paella Restaurant  0.00


----Arrochar----
                venue  freq
0       Deli / Bodega  0.10
1  Italian Restaurant  0.10
2            Bus Stop  0.10
3      Cosmetics Shop  0.05
4   Polish Restaurant  0.05


----Arverne----
            venue  freq
0       Surf Spot  0.22
1  Sandwich Place  0.11
2   Metro Station  0.11
3        Bus Stop  0.06
4      Playground  0.06


----Astoria----
                       venue  freq
0                        Bar  0.07
1  Middle Eastern Restaurant  0.05
2                 Hookah Bar  0.05
3           Greek Restaurant  0.05
4         Seafood Restaurant  0.04


----Astoria Heights----
           venue  freq
0  Deli / Bodega  0.08
1  Shopping Mall  0.08
2    Pizza Place  0.08
3  Bowling Alley  0.08
4         Hostel  0.08


----Auburndale----
                    venue  freq
0  Furniture / Home Store  0.06
1           Deli / Bodega  0.06
2      Miscellaneous Shop  0.06
3       Mobile Phone Shop  0.06
4    Fast Food Restaurant  0.06


----Bath Beach----
                  venue  freq
0    Chinese Restaurant  0.08
1              Pharmacy  0.06
2       Bubble Tea Shop  0.04
3      Sushi Restaurant  0.04
4  Fast Food Restaurant  0.04


----Battery Park City----
         venue  freq
0         Park  0.08
1        Hotel  0.05
2  Coffee Shop  0.05
3          Gym  0.04
4    Wine Shop  0.03


----Bay Ridge----
                venue  freq
0                 Spa  0.07
1  Italian Restaurant  0.07
2         Pizza Place  0.05
3    Greek Restaurant  0.05
4            Pharmacy  0.04


----Bay Terrace----
                venue  freq
0      Clothing Store  0.09
1         Supermarket  0.06
2  Italian Restaurant  0.06
3          Donut Shop  0.06
4       Women's Store  0.04


----Baychester----
                venue  freq
0          Donut Shop  0.09
1      Sandwich Place  0.05
2  Spanish Restaurant  0.05
3           Pet Store  0.05
4  Mexican Restaurant  0.05


----Bayside----
                 venue  freq
0                  Bar  0.08
1    Indian Restaurant  0.04
2  American Restaurant  0.04
3     Sushi Restaurant  0.04
4   Mexican Restaurant  0.04


----Bayswater----
               venue  freq
0         Playground   0.5
1               Park   0.5
2        Yoga Studio   0.0
3  Paella Restaurant   0.0
4          Pet Store   0.0


----Bedford Park----
                venue  freq
0               Diner  0.12
1         Pizza Place  0.12
2         Supermarket  0.09
3  Mexican Restaurant  0.09
4       Deli / Bodega  0.09


----Bedford Stuyvesant----
           venue  freq
0    Coffee Shop  0.08
1            Bar  0.08
2    Pizza Place  0.08
3  Deli / Bodega  0.08
4           Café  0.08


----Beechhurst----
                venue  freq
0  Chinese Restaurant  0.13
1         Yoga Studio  0.07
2  Italian Restaurant  0.07
3            Boutique  0.07
4         Pizza Place  0.07


----Bellaire----
                venue  freq
0  Chinese Restaurant  0.17
1         Bus Station  0.08
2  Italian Restaurant  0.08
3         Coffee Shop  0.08
4    Halal Restaurant  0.08


----Belle Harbor----
           venue  freq
0          Beach  0.18
1  Deli / Bodega  0.12
2            Spa  0.12
3            Pub  0.12
4     Donut Shop  0.06


----Bellerose----
                venue  freq
0  Chinese Restaurant  0.09
1         Pizza Place  0.09
2  Italian Restaurant  0.09
3       Deli / Bodega  0.05
4          Donut Shop  0.05


----Belmont----
                venue  freq
0  Italian Restaurant  0.19
1         Pizza Place  0.09
2       Deli / Bodega  0.06
3              Bakery  0.05
4        Dessert Shop  0.03


----Bensonhurst----
                venue  freq
0          Donut Shop  0.07
1         Pizza Place  0.07
2    Sushi Restaurant  0.07
3  Chinese Restaurant  0.07
4      Ice Cream Shop  0.07


----Bergen Beach----
                venue  freq
0     Harbor / Marina  0.33
1      Baseball Field  0.17
2  Athletics & Sports  0.17
3          Playground  0.17
4          Donut Shop  0.17


----Blissville----
            venue  freq
0      Donut Shop  0.11
1   Deli / Bodega  0.11
2           Hotel  0.11
3  Rental Service  0.05
4       Cafeteria  0.05


----Bloomfield----
               venue  freq
0  Recreation Center   0.2
1           Bus Stop   0.2
2     Discount Store   0.2
3         Theme Park   0.2
4               Park   0.2


----Boerum Hill----
               venue  freq
0        Coffee Shop  0.04
1       Dance Studio  0.04
2                Bar  0.04
3  French Restaurant  0.03
4      Deli / Bodega  0.03


----Borough Park----
           venue  freq
0           Bank  0.17
1  Deli / Bodega  0.12
2    Pizza Place  0.12
3           Café  0.08
4       Pharmacy  0.08


----Breezy Point----
                 venue  freq
0          Supermarket   0.2
1                Trail   0.2
2                Beach   0.2
3             Bus Stop   0.2
4  Monument / Landmark   0.2


----Briarwood----
                 venue  freq
0                  Gym  0.12
1          Coffee Shop  0.12
2   Mexican Restaurant  0.12
3  Arts & Crafts Store  0.12
4           Playground  0.12


----Brighton Beach----
                         venue  freq
0                        Beach  0.07
1                   Restaurant  0.07
2           Russian Restaurant  0.07
3  Eastern European Restaurant  0.07
4                         Bank  0.04


----Broad Channel----
                 venue  freq
0        Deli / Bodega   0.2
1      Other Nightlife   0.2
2          Pizza Place   0.2
3  Sporting Goods Shop   0.2
4             Dive Bar   0.2


----Broadway Junction----
                 venue  freq
0  Fried Chicken Joint  0.14
1           Donut Shop  0.14
2                Diner  0.14
3       Discount Store  0.07
4       Ice Cream Shop  0.07


----Bronxdale----
                venue  freq
0         Supermarket  0.08
1  Chinese Restaurant  0.08
2                 Gym  0.08
3  Mexican Restaurant  0.08
4         Pizza Place  0.08


----Brooklyn Heights----
            venue  freq
0     Yoga Studio  0.05
1   Deli / Bodega  0.04
2            Park  0.04
3  Cosmetics Shop  0.03
4             Gym  0.03


----Brookville----
               venue  freq
0      Deli / Bodega   1.0
1        Yoga Studio   0.0
2  Paella Restaurant   0.0
3           Pharmacy   0.0
4          Pet Store   0.0


----Brownsville----
                venue  freq
0          Restaurant  0.13
1                Park  0.09
2  Chinese Restaurant  0.09
3                Pool  0.04
4       Deli / Bodega  0.04


----Bulls Head----
                venue  freq
0            Bus Stop  0.10
1         Pizza Place  0.08
2       Deli / Bodega  0.05
3            Pharmacy  0.05
4  Chinese Restaurant  0.05


----Bushwick----
                venue  freq
0                 Bar  0.09
1         Coffee Shop  0.08
2       Deli / Bodega  0.07
3  Mexican Restaurant  0.07
4      Discount Store  0.04


----Butler Manor----
                venue  freq
0      Baseball Field  0.33
1                Pool  0.33
2            Bus Stop  0.17
3   Convenience Store  0.17
4  Photography Studio  0.00


----Cambria Heights----
                  venue  freq
0  Caribbean Restaurant  0.18
1            Restaurant  0.09
2           Flower Shop  0.09
3    Chinese Restaurant  0.09
4  Gym / Fitness Center  0.09


----Canarsie----
                  venue  freq
0      Asian Restaurant   0.2
1       Thai Restaurant   0.2
2  Caribbean Restaurant   0.2
3                   Gym   0.2
4           IT Services   0.2


----Carnegie Hill----
            venue  freq
0     Coffee Shop  0.07
1     Pizza Place  0.05
2            Café  0.04
3  Cosmetics Shop  0.04
4       Bookstore  0.03


----Carroll Gardens----
                venue  freq
0  Italian Restaurant  0.11
1         Pizza Place  0.05
2         Coffee Shop  0.05
3              Bakery  0.04
4        Cocktail Bar  0.04


----Castle Hill----
            venue  freq
0  Baseball Field  0.11
1           Diner  0.11
2            Bank  0.11
3     Pizza Place  0.11
4          Market  0.11


----Castleton Corners----
               venue  freq
0        Pizza Place  0.21
1      Grocery Store  0.07
2  Indian Restaurant  0.07
3    Thai Restaurant  0.07
4               Bank  0.07


----Central Harlem----
                 venue  freq
0                  Bar  0.05
1   Seafood Restaurant  0.05
2       Cosmetics Shop  0.05
3   African Restaurant  0.05
4  American Restaurant  0.05


----Charleston----
                        venue  freq
0               Big Box Store  0.06
1              Cosmetics Shop  0.06
2               Women's Store  0.03
3                 Music Venue  0.03
4  Construction & Landscaping  0.03


----Chelsea----
                venue  freq
0         Coffee Shop  0.06
1  Italian Restaurant  0.06
2              Bakery  0.05
3             Theater  0.04
4      Ice Cream Shop  0.04


----Chinatown----
                 venue  freq
0   Chinese Restaurant  0.09
1         Cocktail Bar  0.05
2  American Restaurant  0.04
3               Bakery  0.04
4         Optical Shop  0.03


----City Island----
                    venue  freq
0         Harbor / Marina  0.12
1  Thrift / Vintage Store  0.08
2      Seafood Restaurant  0.08
3      Italian Restaurant  0.04
4                     Bar  0.04


----City Line----
                       venue  freq
0                 Donut Shop  0.09
1                 Shoe Store  0.06
2                   Pharmacy  0.06
3  Latin American Restaurant  0.03
4                Flower Shop  0.03


----Civic Center----
                  venue  freq
0  Gym / Fitness Center  0.05
1    Italian Restaurant  0.04
2                 Hotel  0.04
3     French Restaurant  0.04
4           Coffee Shop  0.04


----Claremont Village----
                venue  freq
0  Chinese Restaurant  0.13
1       Grocery Store  0.13
2         Bus Station  0.09
3       Deli / Bodega  0.09
4         Pizza Place  0.09


----Clason Point----
                       venue  freq
0                       Park   0.4
1                       Pool   0.1
2              Grocery Store   0.1
3                   Bus Stop   0.1
4  South American Restaurant   0.1


----Clifton----
                         venue  freq
0           Mexican Restaurant  0.10
1                Grocery Store  0.10
2                  Pizza Place  0.10
3                Train Station  0.10
4  Eastern European Restaurant  0.05


----Clinton----
                  venue  freq
0               Theater  0.09
1    Italian Restaurant  0.05
2  Gym / Fitness Center  0.05
3   American Restaurant  0.04
4                   Spa  0.04


----Clinton Hill----
                venue  freq
0         Pizza Place  0.05
1  Italian Restaurant  0.05
2  Mexican Restaurant  0.04
3           Wine Shop  0.04
4       Deli / Bodega  0.03


----Co-op City----
                 venue  freq
0          Bus Station  0.18
1       Ice Cream Shop  0.06
2            Gift Shop  0.06
3  Fried Chicken Joint  0.06
4        Grocery Store  0.06


----Cobble Hill----
         venue  freq
0  Coffee Shop  0.04
1   Playground  0.04
2  Pizza Place  0.04
3          Bar  0.04
4  Yoga Studio  0.03


----College Point----
                       venue  freq
0              Deli / Bodega  0.10
1                Pizza Place  0.07
2  Latin American Restaurant  0.07
3         Chinese Restaurant  0.07
4                   Pharmacy  0.05


----Concord----
                 venue  freq
0          Supermarket  0.11
1   Athletics & Sports  0.11
2          Coffee Shop  0.11
3   Chinese Restaurant  0.11
4  Peruvian Restaurant  0.11


----Concourse----
                venue  freq
0              Bakery  0.08
1       Grocery Store  0.08
2       Deli / Bodega  0.08
3  Spanish Restaurant  0.08
4          Art Museum  0.04


----Concourse Village----
                  venue  freq
0        Sandwich Place  0.08
1  Fast Food Restaurant  0.08
2              Pharmacy  0.06
3    Mexican Restaurant  0.06
4           Bus Station  0.06


----Coney Island----
                  venue  freq
0      Baseball Stadium  0.14
1  Caribbean Restaurant  0.14
2    Athletics & Sports  0.07
3              Pharmacy  0.07
4          Skating Rink  0.07


----Corona----
                       venue  freq
0         Mexican Restaurant  0.11
1                  Juice Bar  0.06
2                 Playground  0.06
3  South American Restaurant  0.06
4             Sandwich Place  0.06


----Country Club----
                venue  freq
0      Sandwich Place  0.29
1          Comic Shop  0.14
2         Flea Market  0.14
3  Chinese Restaurant  0.14
4          Playground  0.14


----Crown Heights----
          venue  freq
0   Pizza Place  0.14
1          Café  0.10
2        Museum  0.10
3  Burger Joint  0.05
4   Candy Store  0.05


----Cypress Hills----
                       venue  freq
0        Fried Chicken Joint  0.11
1             Ice Cream Shop  0.07
2       Fast Food Restaurant  0.07
3  Latin American Restaurant  0.07
4         Chinese Restaurant  0.07


----Ditmas Park----
                venue  freq
0       Women's Store  0.04
1  Chinese Restaurant  0.04
2        Burger Joint  0.04
3          Donut Shop  0.04
4            Pharmacy  0.04


----Dongan Hills----
                venue  freq
0            Pharmacy  0.08
1       Deli / Bodega  0.08
2         Pizza Place  0.08
3  Italian Restaurant  0.08
4          Bagel Shop  0.08


----Douglaston----
                  venue  freq
0         Deli / Bodega  0.10
1                  Bank  0.10
2                Bakery  0.10
3            Donut Shop  0.05
4  Fast Food Restaurant  0.05


----Downtown----
                venue  freq
0        Burger Joint  0.04
1         Coffee Shop  0.04
2      Sandwich Place  0.03
3  Chinese Restaurant  0.03
4                 Bar  0.03


----Dumbo----
            venue  freq
0     Coffee Shop  0.06
1            Park  0.05
2            Café  0.05
3  Scenic Lookout  0.04
4          Bakery  0.04


----Dyker Heights----
           venue  freq
0   Dance Studio  0.11
1     Bagel Shop  0.11
2  Grocery Store  0.11
3          Plaza  0.11
4     Playground  0.11


----East Elmhurst----
                 venue  freq
0           Donut Shop  0.22
1          Coffee Shop  0.11
2  Rental Car Location  0.11
3          Supermarket  0.11
4          Gas Station  0.11


----East Flatbush----
                  venue  freq
0              Pharmacy  0.08
1            Print Shop  0.08
2  Fast Food Restaurant  0.08
3    Chinese Restaurant  0.08
4        Hardware Store  0.08


----East Harlem----
                       venue  freq
0         Mexican Restaurant  0.15
1                     Bakery  0.08
2            Thai Restaurant  0.08
3  Latin American Restaurant  0.05
4              Deli / Bodega  0.05


----East New York----
                  venue  freq
0  Fast Food Restaurant  0.19
1           Bus Station  0.12
2         Deli / Bodega  0.06
3     Convenience Store  0.06
4           Music Venue  0.06


----East Tremont----
            venue  freq
0     Pizza Place  0.16
1  Cosmetics Shop  0.11
2      Shoe Store  0.11
3   Deli / Bodega  0.05
4          Lounge  0.05


----East Village----
                venue  freq
0                 Bar  0.06
1      Ice Cream Shop  0.05
2            Wine Bar  0.05
3         Pizza Place  0.04
4  Chinese Restaurant  0.04


----East Williamsburg----
           venue  freq
0            Bar  0.07
1  Deli / Bodega  0.06
2   Cocktail Bar  0.06
3    Coffee Shop  0.06
4         Bakery  0.06


----Eastchester----
                  venue  freq
0  Caribbean Restaurant  0.14
1           Bus Station  0.10
2                 Diner  0.10
3         Deli / Bodega  0.10
4     Convenience Store  0.05


----Edenwald----
           venue  freq
0  Grocery Store  0.17
1    Supermarket  0.17
2    Gas Station  0.17
3      Gift Shop  0.17
4    Fish Market  0.17


----Edgemere----
              venue  freq
0     Metro Station  0.14
1       Pizza Place  0.14
2     Deli / Bodega  0.07
3  Asian Restaurant  0.07
4        Skate Park  0.07


----Edgewater Park----
                venue  freq
0  Italian Restaurant  0.19
1          Donut Shop  0.10
2       Deli / Bodega  0.10
3         Pizza Place  0.10
4          Sports Bar  0.05


----Egbertville----
                        venue  freq
0              Clothing Store   0.2
1          Italian Restaurant   0.2
2                  Bagel Shop   0.2
3              Cosmetics Shop   0.2
4  Construction & Landscaping   0.2


----Elm Park----
                 venue  freq
0        Deli / Bodega  0.22
1             Bus Stop  0.22
2       Ice Cream Shop  0.11
3  American Restaurant  0.11
4   Italian Restaurant  0.11


----Elmhurst----
                       venue  freq
0            Thai Restaurant  0.21
1         Mexican Restaurant  0.12
2  South American Restaurant  0.09
3         Chinese Restaurant  0.06
4      Vietnamese Restaurant  0.06


----Eltingville----
                  venue  freq
0           Pizza Place  0.11
1      Sushi Restaurant  0.11
2                 Diner  0.06
3  Fast Food Restaurant  0.06
4                  Bank  0.06


----Erasmus----
                  venue  freq
0  Caribbean Restaurant  0.17
1           Yoga Studio  0.04
2        Ice Cream Shop  0.04
3   Fried Chicken Joint  0.04
4            Food Truck  0.04


----Far Rockaway----
                venue  freq
0         Pizza Place  0.11
1       Grocery Store  0.09
2       Deli / Bodega  0.09
3  Chinese Restaurant  0.09
4                Bank  0.06


----Fieldston----
               venue  freq
0              River  0.33
1        Bus Station  0.33
2              Plaza  0.33
3        Yoga Studio  0.00
4  Paella Restaurant  0.00


----Financial District----
                 venue  freq
0          Coffee Shop  0.09
1  American Restaurant  0.05
2                  Gym  0.04
3                  Bar  0.04
4           Food Truck  0.04


----Flatbush----
                  venue  freq
0           Coffee Shop  0.10
1  Caribbean Restaurant  0.10
2              Pharmacy  0.10
3    Mexican Restaurant  0.10
4        Sandwich Place  0.05


----Flatiron----
                  venue  freq
0           Yoga Studio  0.04
1                   Spa  0.04
2        Clothing Store  0.04
3  Gym / Fitness Center  0.04
4   Japanese Restaurant  0.04


----Flatlands----
                  venue  freq
0              Pharmacy  0.16
1  Fast Food Restaurant  0.11
2   Fried Chicken Joint  0.11
3  Caribbean Restaurant  0.11
4           Video Store  0.05


----Floral Park----
                venue  freq
0   Indian Restaurant  0.29
1       Grocery Store  0.14
2          Dosa Place  0.14
3         Pizza Place  0.14
4  Salon / Barbershop  0.14


----Flushing----
                venue  freq
0   Hotpot Restaurant  0.08
1  Chinese Restaurant  0.06
2     Bubble Tea Shop  0.06
3   Korean Restaurant  0.05
4                 Gym  0.03


----Fordham----
                  venue  freq
0     Mobile Phone Shop  0.07
1  Fast Food Restaurant  0.06
2                  Bank  0.05
3    Spanish Restaurant  0.05
4  Gym / Fitness Center  0.05


----Forest Hills----
                  venue  freq
0                   Gym  0.08
1  Gym / Fitness Center  0.08
2           Yoga Studio  0.05
3           Pizza Place  0.05
4              Pharmacy  0.05


----Forest Hills Gardens----
                     venue  freq
0                   Bakery  0.11
1  New American Restaurant  0.05
2           Ice Cream Shop  0.05
3         Sushi Restaurant  0.05
4            Grocery Store  0.05


----Fort Greene----
                venue  freq
0  Italian Restaurant  0.06
1             Theater  0.04
2         Coffee Shop  0.04
3         Flower Shop  0.04
4        Cocktail Bar  0.03


----Fort Hamilton----
                  venue  freq
0         Deli / Bodega  0.06
1           Pizza Place  0.04
2                  Bank  0.04
3  Gym / Fitness Center  0.04
4    Italian Restaurant  0.04


----Fox Hills----
           venue  freq
0       Bus Stop  0.29
1            Bar  0.14
2  Deli / Bodega  0.14
3    Bus Station  0.14
4     Playground  0.14


----Fresh Meadows----
                           venue  freq
0                    Bus Station  0.21
1                       Pharmacy  0.14
2             Chinese Restaurant  0.14
3                 Cosmetics Shop  0.07
4  Vegetarian / Vegan Restaurant  0.07


----Fulton Ferry----
                 venue  freq
0                 Park  0.12
1  American Restaurant  0.07
2       Scenic Lookout  0.05
3               Bakery  0.03
4          Coffee Shop  0.03


----Georgetown----
            venue  freq
0            Bank  0.10
1  Breakfast Spot  0.07
2        Pharmacy  0.07
3      Donut Shop  0.07
4  Cosmetics Shop  0.03


----Gerritsen Beach----
              venue  freq
0       Pizza Place  0.11
1               Bar  0.11
2    Ice Cream Shop  0.11
3  Department Store  0.05
4      Liquor Store  0.05


----Glen Oaks----
                  venue  freq
0              Pharmacy  0.10
1           Bus Station  0.05
2        Sandwich Place  0.05
3  Fast Food Restaurant  0.05
4             Pet Store  0.05


----Glendale----
                venue  freq
0   Food & Drink Shop  0.17
1       Deli / Bodega  0.17
2             Brewery  0.17
3  Chinese Restaurant  0.17
4         Pizza Place  0.17


----Gowanus----
                    venue  freq
0      Italian Restaurant  0.06
1                     Bar  0.06
2    Gym / Fitness Center  0.05
3  Furniture / Home Store  0.05
4           Deli / Bodega  0.05


----Gramercy----
                venue  freq
0                 Bar  0.05
1  Italian Restaurant  0.05
2         Pizza Place  0.04
3  Mexican Restaurant  0.04
4          Bagel Shop  0.04


----Graniteville----
           venue  freq
0    Supermarket  0.33
1     Food Truck  0.33
2  Boat or Ferry  0.33
3   Outlet Store  0.00
4    Pet Service  0.00


----Grant City----
               venue  freq
0           Bus Stop  0.11
1        Pizza Place  0.11
2  Convenience Store  0.07
3    Other Nightlife  0.04
4   Asian Restaurant  0.04


----Grasmere----
           venue  freq
0       Bus Stop  0.19
1  Grocery Store  0.10
2           Bank  0.10
3         Bakery  0.10
4     Nail Salon  0.05


----Gravesend----
                venue  freq
0         Pizza Place  0.10
1              Lounge  0.07
2         Bus Station  0.07
3              Bakery  0.07
4  Italian Restaurant  0.07


----Great Kills----
                venue  freq
0         Pizza Place  0.13
1                 Bar  0.13
2  Italian Restaurant  0.09
3      Sandwich Place  0.04
4      Cosmetics Shop  0.04


----Greenpoint----
           venue  freq
0            Bar  0.09
1    Pizza Place  0.06
2   Cocktail Bar  0.06
3    Coffee Shop  0.06
4  Grocery Store  0.03


----Greenridge----
                        venue  freq
0                  Bagel Shop   0.2
1                 Pizza Place   0.2
2                       Diner   0.2
3  Construction & Landscaping   0.2
4                      Lawyer   0.2


----Greenwich Village----
                venue  freq
0  Italian Restaurant  0.12
1      Clothing Store  0.06
2    Sushi Restaurant  0.05
3                Café  0.03
4  Seafood Restaurant  0.03


----Grymes Hill----
         venue  freq
0      Dog Run   0.5
1     Bus Stop   0.5
2  Yoga Studio   0.0
3    Pet Store   0.0
4  Pet Service   0.0


----Hamilton Heights----
                venue  freq
0         Pizza Place  0.08
1       Deli / Bodega  0.07
2  Mexican Restaurant  0.05
3         Coffee Shop  0.05
4                Café  0.05


----Hammels----
                             venue  freq
0                            Beach  0.33
1                    Deli / Bodega  0.06
2                             Café  0.06
3                       Shoe Store  0.06
4  Southern / Soul Food Restaurant  0.06


----Heartland Village----
         venue  freq
0  Coffee Shop   0.2
1   Donut Shop   0.1
2     Pharmacy   0.1
3          Spa   0.1
4  Pizza Place   0.1


----High  Bridge----
                venue  freq
0            Pharmacy  0.16
1         Supermarket  0.09
2         Pizza Place  0.09
3  Chinese Restaurant  0.06
4  Seafood Restaurant  0.06


----Highland Park----
                venue  freq
0        Liquor Store  0.12
1         Pizza Place  0.12
2  Spanish Restaurant  0.12
3      Cosmetics Shop  0.06
4                Park  0.06


----Hillcrest----
                  venue  freq
0         Grocery Store  0.11
1            Donut Shop  0.11
2     Convenience Store  0.05
3  Fast Food Restaurant  0.05
4     Mobile Phone Shop  0.05


----Hollis----
               venue  freq
0      Shopping Mall  0.11
1     Sandwich Place  0.11
2     Baseball Field  0.11
3               Park  0.11
4  Mobile Phone Shop  0.06


----Holliswood----
               venue  freq
0        Supermarket  0.25
1  Mobile Phone Shop  0.25
2         Playground  0.25
3         Donut Shop  0.25
4           Pharmacy  0.00


----Homecrest----
                venue  freq
0                Bank  0.10
1          Donut Shop  0.08
2      Sandwich Place  0.08
3       Grocery Store  0.05
4  Chinese Restaurant  0.05


----Howard Beach----
                  venue  freq
0    Italian Restaurant  0.10
1              Pharmacy  0.05
2            Bagel Shop  0.05
3        Sandwich Place  0.05
4  Fast Food Restaurant  0.05


----Hudson Yards----
                  venue  freq
0   American Restaurant  0.06
1  Gym / Fitness Center  0.05
2                 Hotel  0.05
3                  Café  0.05
4    Italian Restaurant  0.05


----Huguenot----
                venue  freq
0                Bank  0.22
1       Deli / Bodega  0.11
2  Italian Restaurant  0.11
3      Ice Cream Shop  0.11
4      Sandwich Place  0.11


----Hunters Point----
                 venue  freq
0   Italian Restaurant  0.05
1                 Café  0.05
2  Japanese Restaurant  0.04
3      Thai Restaurant  0.03
4        Deli / Bodega  0.03


----Hunts Point----
          venue  freq
0     Juice Bar  0.08
1  Gourmet Shop  0.08
2          Bank  0.08
3     BBQ Joint  0.08
4   Pizza Place  0.08


----Inwood----
                venue  freq
0  Mexican Restaurant  0.07
1          Restaurant  0.05
2              Bakery  0.05
3              Lounge  0.05
4         Pizza Place  0.05


----Jackson Heights----
                       venue  freq
0  Latin American Restaurant  0.11
1  South American Restaurant  0.07
2        Peruvian Restaurant  0.07
3                     Bakery  0.05
4          Mobile Phone Shop  0.05


----Jamaica Center----
                 venue  freq
0    Mobile Phone Shop  0.09
1       Sandwich Place  0.06
2       Clothing Store  0.06
3  Fried Chicken Joint  0.04
4          Pizza Place  0.04


----Jamaica Estates----
               venue  freq
0        Bus Station  0.33
1       Intersection  0.33
2  Indian Restaurant  0.33
3        Yoga Studio  0.00
4  Paella Restaurant  0.00


----Jamaica Hills----
                  venue  freq
0              Pharmacy  0.13
1     Indian Restaurant  0.09
2   Fried Chicken Joint  0.09
3            Donut Shop  0.09
4  Fast Food Restaurant  0.09


----Kensington----
             venue  freq
0  Thai Restaurant  0.08
1    Grocery Store  0.08
2   Ice Cream Shop  0.05
3      Pizza Place  0.05
4         Pharmacy  0.05


----Kew Gardens----
                venue  freq
0  Chinese Restaurant  0.06
1         Pizza Place  0.04
2                 Bar  0.04
3      Cosmetics Shop  0.04
4                Park  0.04


----Kew Gardens Hills----
                 venue  freq
0                 Bank  0.15
1          Pizza Place  0.10
2           Playground  0.10
3           Restaurant  0.05
4  Indie Movie Theater  0.05


----Kingsbridge----
            venue  freq
0     Pizza Place  0.08
1          Bakery  0.06
2     Supermarket  0.05
3  Sandwich Place  0.05
4             Bar  0.05


----Kingsbridge Heights----
                venue  freq
0         Pizza Place  0.14
1         Coffee Shop  0.09
2          Food Truck  0.06
3       Deli / Bodega  0.06
4  Mexican Restaurant  0.06


----Laurelton----
                  venue  freq
0        Cosmetics Shop   0.4
1  Caribbean Restaurant   0.4
2         Train Station   0.2
3           Yoga Studio   0.0
4  Pakistani Restaurant   0.0


----Lefrak City----
              venue  freq
0    Cosmetics Shop  0.08
1  Department Store  0.08
2            Bakery  0.08
3        Restaurant  0.04
4        Food Truck  0.04


----Lenox Hill----
                venue  freq
0         Coffee Shop  0.07
1  Italian Restaurant  0.07
2         Pizza Place  0.05
3        Cocktail Bar  0.04
4        Burger Joint  0.03


----Lighthouse Hill----
                venue  freq
0               Trail   0.2
1  Italian Restaurant   0.2
2                Café   0.2
3          Art Museum   0.2
4                 Spa   0.2


----Lincoln Square----
                venue  freq
0               Plaza  0.06
1                Café  0.05
2             Theater  0.05
3        Concert Hall  0.05
4  Italian Restaurant  0.05


----Lindenwood----
                venue  freq
0        Dance Studio  0.08
1          Donut Shop  0.08
2  Chinese Restaurant  0.08
3         Pizza Place  0.08
4                Bank  0.08


----Little Italy----
                      venue  freq
0                    Bakery  0.05
1        Italian Restaurant  0.05
2                      Café  0.04
3  Mediterranean Restaurant  0.03
4           Bubble Tea Shop  0.03


----Little Neck----
                venue  freq
0  Chinese Restaurant  0.09
1       Deli / Bodega  0.06
2   Korean Restaurant  0.06
3  Italian Restaurant  0.06
4                Bank  0.04


----Long Island City----
                venue  freq
0         Coffee Shop  0.11
1               Hotel  0.11
2         Pizza Place  0.06
3                 Bar  0.06
4  Mexican Restaurant  0.06


----Longwood----
                       venue  freq
0                 Donut Shop  0.17
1       Fast Food Restaurant  0.17
2                      Diner  0.17
3  Latin American Restaurant  0.17
4              Grocery Store  0.17


----Lower East Side----
                venue  freq
0                Café  0.05
1  Chinese Restaurant  0.05
2         Pizza Place  0.05
3         Coffee Shop  0.04
4              Bakery  0.04


----Madison----
            venue  freq
0      Bagel Shop  0.17
1      Restaurant  0.08
2    Dessert Shop  0.08
3     Pizza Place  0.08
4  Pilates Studio  0.08


----Malba----
          venue  freq
0     Rest Area   0.5
1  Tennis Court   0.5
2   Yoga Studio   0.0
3  Outlet Store   0.0
4   Pet Service   0.0


----Manhattan Beach----
            venue  freq
0            Café  0.22
1            Food  0.11
2     Pizza Place  0.11
3           Beach  0.11
4  Ice Cream Shop  0.11


----Manhattan Terrace----
            venue  freq
0     Pizza Place  0.17
1      Donut Shop  0.12
2     Coffee Shop  0.08
3          Bakery  0.08
4  Ice Cream Shop  0.08


----Manhattan Valley----
                venue  freq
0   Indian Restaurant  0.06
1                 Bar  0.06
2         Coffee Shop  0.06
3         Pizza Place  0.04
4  Mexican Restaurant  0.04


----Manhattanville----
                venue  freq
0         Coffee Shop  0.07
1                Park  0.05
2  Chinese Restaurant  0.05
3  Mexican Restaurant  0.05
4        Liquor Store  0.05


----Manor Heights----
                venue  freq
0       Deli / Bodega  0.18
1          Donut Shop  0.18
2  Chinese Restaurant  0.09
3        Liquor Store  0.09
4                Food  0.09


----Marble Hill----
            venue  freq
0  Sandwich Place  0.12
1     Coffee Shop  0.08
2     Yoga Studio  0.04
3   Shopping Mall  0.04
4  Tennis Stadium  0.04


----Marine Park----
            venue  freq
0   Deli / Bodega  0.11
1             Gym  0.11
2  Baseball Field  0.11
3    Soccer Field  0.11
4     Pizza Place  0.11


----Mariner's Harbor----
                venue  freq
0       Deli / Bodega  0.29
1  Italian Restaurant  0.29
2            Bus Stop  0.29
3  Athletics & Sports  0.14
4         Yoga Studio  0.00


----Maspeth----
               venue  freq
0              Diner  0.10
1        Pizza Place  0.10
2  Mobile Phone Shop  0.06
3               Bank  0.06
4      Grocery Store  0.06


----Melrose----
                  venue  freq
0              Pharmacy  0.12
1           Pizza Place  0.12
2  Gym / Fitness Center  0.08
3           Supermarket  0.08
4        Sandwich Place  0.08


----Middle Village----
         venue  freq
0   Playground  0.06
1   Sports Bar  0.06
2  Pizza Place  0.06
3         Park  0.06
4       Bakery  0.06


----Midland Beach----
                venue  freq
0       Deli / Bodega  0.14
1               Beach  0.14
2      Baseball Field  0.07
3           Pet Store  0.07
4  Chinese Restaurant  0.07


----Midtown----
            venue  freq
0           Hotel  0.07
1  Clothing Store  0.04
2      Food Truck  0.04
3         Theater  0.04
4     Coffee Shop  0.04


----Midtown South----
                 venue  freq
0    Korean Restaurant  0.15
1                Hotel  0.05
2  Japanese Restaurant  0.04
3            Hotel Bar  0.04
4         Dessert Shop  0.04


----Midwood----
               venue  freq
0        Pizza Place  0.31
1     Ice Cream Shop  0.08
2  Convenience Store  0.08
3              Field  0.08
4             Bakery  0.08


----Mill Basin----
                 venue  freq
0   Chinese Restaurant  0.11
1  Japanese Restaurant  0.08
2          Pizza Place  0.08
3                 Bank  0.05
4       Cosmetics Shop  0.05


----Mill Island----
         venue  freq
0         Pool   1.0
1  Yoga Studio   0.0
2    Pet Store   0.0
3  Pet Service   0.0
4     Pet Café   0.0


----Morningside Heights----
                 venue  freq
0                 Park  0.10
1          Coffee Shop  0.07
2  American Restaurant  0.07
3            Bookstore  0.07
4       Sandwich Place  0.05


----Morris Heights----
                       venue  freq
0                IT Services  0.11
1  Latin American Restaurant  0.11
2                       Bank  0.11
3                Pizza Place  0.11
4              Grocery Store  0.11


----Morris Park----
            venue  freq
0     Pizza Place  0.19
1    Burger Joint  0.10
2   Deli / Bodega  0.10
3          Bakery  0.10
4  Sandwich Place  0.05


----Morrisania----
                  venue  freq
0        Discount Store  0.17
1  Fast Food Restaurant  0.08
2            Donut Shop  0.08
3           Bus Station  0.08
4    Chinese Restaurant  0.08


----Mott Haven----
                venue  freq
0         Pizza Place  0.11
1                 Gym  0.11
2  Spanish Restaurant  0.11
3          Donut Shop  0.11
4      Baseball Field  0.05


----Mount Eden----
                  venue  freq
0           Supermarket  0.11
1              Pharmacy  0.08
2    Spanish Restaurant  0.08
3  Fast Food Restaurant  0.05
4   Fried Chicken Joint  0.05


----Mount Hope----
                venue  freq
0       Grocery Store  0.18
1       Deli / Bodega  0.09
2  Spanish Restaurant  0.09
3      Sandwich Place  0.09
4    Asian Restaurant  0.09


----Murray Hill----
                 venue  freq
0    Korean Restaurant  0.15
1          Coffee Shop  0.05
2       Sandwich Place  0.03
3  American Restaurant  0.03
4                  Bar  0.03


----Neponsit----
               venue  freq
0              Beach   1.0
1        Yoga Studio   0.0
2  Paella Restaurant   0.0
3          Pet Store   0.0
4        Pet Service   0.0


----New Brighton----
            venue  freq
0        Bus Stop  0.36
1   Deli / Bodega  0.18
2            Park  0.18
3  Discount Store  0.09
4   Bowling Alley  0.09


----New Dorp----
                venue  freq
0         Pizza Place  0.14
1  Italian Restaurant  0.11
2  Mexican Restaurant  0.04
3       Train Station  0.04
4          Bagel Shop  0.04


----New Dorp Beach----
                venue  freq
0       Deli / Bodega  0.17
1  Italian Restaurant  0.17
2               Beach  0.08
3          Restaurant  0.08
4               Diner  0.08


----New Lots----
                  venue  freq
0         Grocery Store  0.10
1           Pizza Place  0.10
2  Fast Food Restaurant  0.10
3         Metro Station  0.05
4                  Park  0.05


----New Springville----
                     venue  freq
0              Coffee Shop  0.09
1              Pizza Place  0.09
2       Chinese Restaurant  0.09
3  Health & Beauty Service  0.09
4            Deli / Bodega  0.05


----Noho----
                venue  freq
0  Italian Restaurant  0.06
1        Cocktail Bar  0.05
2   French Restaurant  0.05
3         Pizza Place  0.04
4            Boutique  0.03


----North Corona----
                  venue  freq
0         Deli / Bodega  0.17
1    Spanish Restaurant  0.12
2  Gym / Fitness Center  0.08
3                 Hotel  0.08
4           Pizza Place  0.08


----North Riverdale----
                venue  freq
0         Pizza Place  0.14
1  Italian Restaurant  0.09
2                Bank  0.09
3        Burger Joint  0.05
4      Sandwich Place  0.05


----North Side----
                 venue  freq
0          Coffee Shop  0.06
1          Pizza Place  0.05
2                  Bar  0.04
3  American Restaurant  0.03
4        Jewelry Store  0.03


----Norwood----
                 venue  freq
0                 Park  0.13
1          Pizza Place  0.13
2                 Bank  0.10
3        Deli / Bodega  0.07
4  American Restaurant  0.07


----Oakland Gardens----
                venue  freq
0   Korean Restaurant  0.12
1         Yoga Studio  0.08
2  Chinese Restaurant  0.08
3              Bakery  0.04
4                Bank  0.04


----Oakwood----
               venue  freq
0                Bar  0.25
1        Bus Station  0.25
2         Playground  0.25
3             Lawyer  0.25
4  Paella Restaurant  0.00


----Ocean Hill----
                             venue  freq
0                    Deli / Bodega  0.10
1                    Grocery Store  0.10
2                         Bus Stop  0.07
3  Southern / Soul Food Restaurant  0.07
4              Fried Chicken Joint  0.07


----Ocean Parkway----
                   venue  freq
0            Pizza Place  0.08
1           Liquor Store  0.08
2  General Entertainment  0.04
3      Indian Restaurant  0.04
4             Bagel Shop  0.04


----Old Town----
                venue  freq
0  Italian Restaurant  0.20
1        Liquor Store  0.05
2         Video Store  0.05
3       Grocery Store  0.05
4         Auto Garage  0.05


----Olinville----
                  venue  freq
0  Caribbean Restaurant   0.2
1         Metro Station   0.1
2            Laundromat   0.1
3      Basketball Court   0.1
4                  Food   0.1


----Ozone Park----
         venue  freq
0     Pharmacy  0.09
1  Pizza Place  0.09
2        Diner  0.06
3          Gym  0.06
4         Bank  0.06


----Paerdegat Basin----
              venue  freq
0  Asian Restaurant  0.33
1   Harbor / Marina  0.33
2              Food  0.33
3       Yoga Studio  0.00
4         Pet Store  0.00


----Park Hill----
                  venue  freq
0              Bus Stop  0.29
1    Athletics & Sports  0.29
2  Gym / Fitness Center  0.14
3           Coffee Shop  0.14
4                 Hotel  0.14


----Park Slope----
                 venue  freq
0          Coffee Shop  0.07
1         Burger Joint  0.06
2  American Restaurant  0.06
3          Pizza Place  0.04
4   Italian Restaurant  0.04


----Parkchester----
                 venue  freq
0          Supermarket  0.14
1        Women's Store  0.09
2          Pizza Place  0.09
3           Kids Store  0.06
4  American Restaurant  0.06


----Pelham Bay----
                  venue  freq
0    Italian Restaurant  0.08
1                  Bank  0.08
2         Deli / Bodega  0.05
3  Gym / Fitness Center  0.05
4     Convenience Store  0.05


----Pelham Gardens----
          venue  freq
0   Bus Station  0.10
1   Pizza Place  0.10
2      Pharmacy  0.10
3    Donut Shop  0.10
4  Intersection  0.05


----Pelham Parkway----
                venue  freq
0         Bus Station  0.09
1  Frozen Yogurt Shop  0.09
2  Chinese Restaurant  0.09
3  Italian Restaurant  0.09
4         Pizza Place  0.09


----Pleasant Plains----
                  venue  freq
0            Donut Shop  0.14
1           Pizza Place  0.14
2   Rental Car Location  0.07
3            Toll Plaza  0.07
4  Fast Food Restaurant  0.07


----Pomonok----
            venue  freq
0             Bar  0.09
1      Playground  0.09
2  Scenic Lookout  0.09
3     Pizza Place  0.09
4   Bowling Alley  0.09


----Port Ivory----
               venue  freq
0                Bar   1.0
1  Paella Restaurant   0.0
2           Pharmacy   0.0
3          Pet Store   0.0
4        Pet Service   0.0


----Port Morris----
                           venue  freq
0               Storage Facility  0.07
1                        Brewery  0.07
2            Peruvian Restaurant  0.07
3  Paper / Office Supplies Store  0.07
4                  Grocery Store  0.07


----Port Richmond----
                 venue  freq
0           Donut Shop  0.25
1     Basketball Court  0.25
2  Rental Car Location  0.25
3                 Food  0.25
4          Yoga Studio  0.00


----Prince's Bay----
                venue  freq
0         Pizza Place  0.18
1            Pharmacy  0.09
2           Pet Store  0.09
3  Italian Restaurant  0.09
4      Ice Cream Shop  0.09


----Prospect Heights----
                venue  freq
0                 Bar  0.09
1                Café  0.04
2           Wine Shop  0.04
3        Cocktail Bar  0.04
4  Mexican Restaurant  0.04


----Prospect Lefferts Gardens----
                  venue  freq
0                  Café  0.08
1                Bakery  0.08
2  Caribbean Restaurant  0.06
3           Pizza Place  0.06
4     Indian Restaurant  0.04


----Prospect Park South----
                  venue  freq
0  Caribbean Restaurant  0.08
1           Pizza Place  0.06
2         Grocery Store  0.06
3  Fast Food Restaurant  0.06
4              Pharmacy  0.06


----Queens Village----
                venue  freq
0                Bank  0.14
1    Department Store  0.07
2          Donut Shop  0.07
3  Mexican Restaurant  0.07
4              Bakery  0.07


----Queensboro Hill----
                           venue  freq
0             Chinese Restaurant  0.12
1                           Bank  0.08
2                         Bakery  0.08
3                    Supermarket  0.04
4  Vegetarian / Vegan Restaurant  0.04


----Queensbridge----
              venue  freq
0             Hotel  0.19
1    Scenic Lookout  0.06
2    Sandwich Place  0.06
3  Basketball Court  0.06
4    Baseball Field  0.06


----Randall Manor----
           venue  freq
0       Bus Stop   0.4
1  Deli / Bodega   0.2
2     Bagel Shop   0.2
3           Park   0.2
4    Yoga Studio   0.0


----Ravenswood----
                venue  freq
0  Chinese Restaurant  0.12
1       Grocery Store  0.08
2               Diner  0.04
3    Cuban Restaurant  0.04
4   Food & Drink Shop  0.04


----Red Hook----
                 venue  freq
0          Art Gallery  0.08
1   Seafood Restaurant  0.08
2                 Park  0.06
3                  Bar  0.06
4  American Restaurant  0.06


----Rego Park----
              venue  freq
0            Bakery  0.10
1    Sandwich Place  0.07
2  Sushi Restaurant  0.05
3        Donut Shop  0.05
4       Pizza Place  0.05


----Remsen Village----
                        venue  freq
0        Caribbean Restaurant  0.18
1        Fast Food Restaurant  0.12
2                  Donut Shop  0.06
3                 Fish Market  0.06
4  Construction & Landscaping  0.06


----Richmond Hill----
                       venue  freq
0       Caribbean Restaurant  0.08
1  Latin American Restaurant  0.08
2                Pizza Place  0.08
3                     Lounge  0.08
4                       Bank  0.08


----Richmond Town----
                venue  freq
0                 Spa   0.2
1      History Museum   0.2
2  Italian Restaurant   0.2
3          Bagel Shop   0.2
4                Café   0.2


----Richmond Valley----
                  venue  freq
0  Fast Food Restaurant  0.17
1                  Bank  0.17
2           Coffee Shop  0.08
3        Sandwich Place  0.08
4         Train Station  0.08


----Ridgewood----
                         venue  freq
0                       Bakery  0.05
1  Eastern European Restaurant  0.05
2            Mobile Phone Shop  0.05
3                   Playground  0.05
4                  Pizza Place  0.05


----Riverdale----
            venue  freq
0     Bus Station  0.18
1            Park  0.18
2  Baseball Field  0.09
3           Plaza  0.09
4            Bank  0.09


----Rochdale----
                             venue  freq
0  Southern / Soul Food Restaurant  0.12
1                           Market  0.12
2                       Food Court  0.06
3                       Donut Shop  0.06
4             Fast Food Restaurant  0.06


----Rockaway Beach----
                       venue  freq
0                      Beach  0.16
1                 Bagel Shop  0.04
2  Latin American Restaurant  0.04
3                 Food Truck  0.04
4       Fast Food Restaurant  0.04


----Rockaway Park----
         venue  freq
0        Beach  0.17
1  Pizza Place  0.08
2   Donut Shop  0.08
3         Bank  0.08
4  Yoga Studio  0.04


----Roosevelt Island----
            venue  freq
0     Coffee Shop  0.07
1  Sandwich Place  0.07
2            Park  0.07
3          Bridge  0.03
4     Pizza Place  0.03


----Rosebank----
                venue  freq
0            Pharmacy  0.08
1       Grocery Store  0.08
2  Italian Restaurant  0.08
3  Mexican Restaurant  0.04
4        Intersection  0.04


----Rosedale----
                  venue  freq
0           Bus Station  0.13
1        Cosmetics Shop  0.07
2           Supermarket  0.07
3   Fried Chicken Joint  0.07
4  Caribbean Restaurant  0.07


----Rossville----
            venue  freq
0      Bagel Shop  0.19
1     Pizza Place  0.19
2     Dry Cleaner  0.06
3  Ice Cream Shop  0.06
4   Moving Target  0.06


----Roxbury----
            venue  freq
0  Baseball Field  0.14
1   Deli / Bodega  0.14
2           Beach  0.14
3           Trail  0.14
4       Irish Pub  0.14


----Rugby----
                  venue  freq
0  Caribbean Restaurant  0.11
1           Supermarket  0.11
2         Grocery Store  0.11
3                  Bank  0.11
4  Fast Food Restaurant  0.06


----Sandy Ground----
               venue  freq
0           Bus Stop   0.2
1       Intersection   0.1
2         Food Truck   0.1
3  Fish & Chips Shop   0.1
4   Greek Restaurant   0.1


----Schuylerville----
                 venue  freq
0             Pharmacy   0.1
1   Mexican Restaurant   0.1
2  American Restaurant   0.1
3                  Bar   0.1
4                 Bank   0.1


----Sea Gate----
          venue  freq
0   IT Services  0.17
1         Beach  0.17
2   Bus Station  0.17
3  Home Service  0.17
4           Spa  0.17


----Sheepshead Bay----
                venue  freq
0  Turkish Restaurant  0.13
1        Dessert Shop  0.13
2      Sandwich Place  0.09
3         Yoga Studio  0.04
4  Italian Restaurant  0.04


----Shore Acres----
                venue  freq
0            Bus Stop  0.12
1       Deli / Bodega  0.12
2  Italian Restaurant  0.12
3        Intersection  0.08
4                 Bar  0.08


----Silver Lake----
                 venue  freq
0         Burger Joint  0.33
1  American Restaurant  0.33
2          Golf Course  0.33
3          Yoga Studio  0.00
4    Paella Restaurant  0.00


----Soho----
            venue  freq
0  Clothing Store  0.10
1        Boutique  0.06
2      Shoe Store  0.04
3     Art Gallery  0.04
4   Women's Store  0.04


----Somerville----
                venue  freq
0                Park   1.0
1         Yoga Studio   0.0
2  Photography Studio   0.0
3           Pet Store   0.0
4         Pet Service   0.0


----Soundview----
                venue  freq
0  Chinese Restaurant  0.18
1       Grocery Store  0.12
2    Basketball Court  0.06
3         Video Store  0.06
4        Burger Joint  0.06


----South Beach----
                venue  freq
0               Beach  0.29
1                Pier  0.29
2  Athletics & Sports  0.14
3       Deli / Bodega  0.14
4            Bus Stop  0.14


----South Jamaica----
           venue  freq
0    Bus Station  0.29
1    Supermarket  0.14
2       Bus Line  0.14
3         Bakery  0.14
4  Grocery Store  0.14


----South Ozone Park----
                  venue  freq
0                  Park  0.21
1         Deli / Bodega  0.21
2  Fast Food Restaurant  0.14
3                   Bar  0.07
4          Home Service  0.07


----South Side----
                 venue  freq
0                  Bar  0.07
1          Pizza Place  0.06
2          Coffee Shop  0.06
3  American Restaurant  0.04
4          Yoga Studio  0.03


----Springfield Gardens----
                 venue  freq
0          Bus Station  0.11
1  Fried Chicken Joint  0.11
2           Donut Shop  0.11
3         Intersection  0.06
4                  Gym  0.06


----Spuyten Duyvil----
              venue  freq
0              Park  0.25
1  Asian Restaurant  0.08
2              Food  0.08
3          Bus Line  0.08
4              Bank  0.08


----St. Albans----
                  venue  freq
0  Caribbean Restaurant  0.19
1  Fast Food Restaurant  0.12
2         Deli / Bodega  0.06
3       Motorcycle Shop  0.06
4         Grocery Store  0.06


----St. George----
                 venue  freq
0       Clothing Store  0.17
1                  Bar  0.06
2  Sporting Goods Shop  0.06
3  American Restaurant  0.06
4   Italian Restaurant  0.06


----Stapleton----
                venue  freq
0         Pizza Place  0.09
1                Café  0.06
2      Sandwich Place  0.06
3  Mexican Restaurant  0.06
4                Bank  0.06


----Starrett City----
                  venue  freq
0  Caribbean Restaurant  0.08
1              Gym Pool  0.08
2              Bus Stop  0.08
3           Supermarket  0.08
4   American Restaurant  0.08


----Steinway----
                 venue  freq
0  Rental Car Location  0.14
1        Women's Store  0.05
2       Cosmetics Shop  0.05
3     Business Service  0.05
4         Dessert Shop  0.05


----Stuyvesant Town----
               venue  freq
0      Boat or Ferry  0.15
1               Park  0.10
2                Bar  0.10
3  German Restaurant  0.05
4         Playground  0.05


----Sunnyside----
                venue  freq
0         Pizza Place  0.11
1  Italian Restaurant  0.07
2      Discount Store  0.04
3             Theater  0.04
4               Hotel  0.04


----Sunnyside Gardens----
           venue  freq
0            Bar  0.07
1  Grocery Store  0.06
2    Pizza Place  0.04
3    Coffee Shop  0.03
4       Pharmacy  0.03


----Sunset Park----
                       venue  freq
0                     Bakery  0.09
1                       Bank  0.09
2         Mexican Restaurant  0.09
3                Pizza Place  0.09
4  Latin American Restaurant  0.09


----Sutton Place----
                    venue  freq
0    Gym / Fitness Center  0.06
1      Italian Restaurant  0.05
2  Furniture / Home Store  0.04
3                     Gym  0.03
4       Indian Restaurant  0.03


----Throgs Neck----
                venue  freq
0       Deli / Bodega   0.2
1         Coffee Shop   0.1
2  Italian Restaurant   0.1
3    Asian Restaurant   0.1
4         Pizza Place   0.1


----Todt Hill----
                venue  freq
0                Park   1.0
1         Yoga Studio   0.0
2  Photography Studio   0.0
3           Pet Store   0.0
4         Pet Service   0.0


----Tompkinsville----
                    venue  freq
0                 Brewery  0.07
1                    Café  0.07
2  Thrift / Vintage Store  0.07
3                    Park  0.07
4             Pizza Place  0.07


----Tottenville----
                    venue  freq
0  Thrift / Vintage Store  0.12
1                Bus Stop  0.12
2      Mexican Restaurant  0.12
3            Home Service  0.12
4      Miscellaneous Shop  0.12


----Travis----
            venue  freq
0           Hotel  0.18
1   Deli / Bodega  0.12
2   Bowling Alley  0.12
3      Donut Shop  0.06
4  Baseball Field  0.06


----Tribeca----
                 venue  freq
0   Italian Restaurant  0.05
1  American Restaurant  0.05
2                 Park  0.05
3                 Café  0.04
4                  Spa  0.04


----Tudor City----
                venue  freq
0  Mexican Restaurant  0.06
1                Park  0.06
2                Café  0.06
3         Pizza Place  0.05
4    Greek Restaurant  0.05


----Turtle Bay----
                venue  freq
0  Italian Restaurant  0.06
1         Coffee Shop  0.05
2          Steakhouse  0.05
3    Sushi Restaurant  0.05
4            Wine Bar  0.04


----Unionport----
                       venue  freq
0             Ice Cream Shop  0.09
1                 Donut Shop  0.09
2  Latin American Restaurant  0.09
3         Seafood Restaurant  0.04
4          Mobile Phone Shop  0.04


----University Heights----
                 venue  freq
0          Pizza Place  0.11
1           Shoe Store  0.05
2       Cosmetics Shop  0.05
3          Supermarket  0.05
4  Fried Chicken Joint  0.05


----Upper East Side----
                venue  freq
0  Italian Restaurant  0.08
1             Exhibit  0.07
2              Bakery  0.05
3         Art Gallery  0.05
4         Coffee Shop  0.04


----Upper West Side----
                venue  freq
0  Italian Restaurant  0.06
1         Coffee Shop  0.04
2                 Bar  0.04
3            Wine Bar  0.04
4              Bakery  0.03


----Utopia----
              venue  freq
0     Deli / Bodega  0.20
1  Basketball Court  0.07
2        Donut Shop  0.07
3    History Museum  0.07
4       Pizza Place  0.07


----Van Nest----
           venue  freq
0  Deli / Bodega  0.20
1    Pizza Place  0.20
2     Board Shop  0.05
3            Spa  0.05
4    Coffee Shop  0.05


----Vinegar Hill----
         venue  freq
0   Food Truck  0.17
1         Café  0.07
2    Wine Shop  0.07
3  Coffee Shop  0.07
4  Art Gallery  0.07


----Wakefield----
                  venue  freq
0              Pharmacy  0.12
1          Dessert Shop  0.12
2        Sandwich Place  0.12
3        Ice Cream Shop  0.12
4  Caribbean Restaurant  0.12


----Washington Heights----
                venue  freq
0                Café  0.06
1       Grocery Store  0.05
2              Bakery  0.05
3   Mobile Phone Shop  0.03
4  Chinese Restaurant  0.03


----Weeksville----
            venue  freq
0   Grocery Store  0.11
1  Discount Store  0.11
2            Café  0.11
3  History Museum  0.05
4      Donut Shop  0.05


----West Brighton----
           venue  freq
0    Coffee Shop  0.08
1  Deli / Bodega  0.05
2       Pharmacy  0.05
3            Bar  0.05
4    Music Store  0.05


----West Farms----
            venue  freq
0     Bus Station  0.19
1   Metro Station  0.10
2      Donut Shop  0.10
3  Cosmetics Shop  0.05
4     Coffee Shop  0.05


----West Village----
                     venue  freq
0       Italian Restaurant  0.09
1  New American Restaurant  0.06
2           Cosmetics Shop  0.05
3                 Wine Bar  0.04
4      American Restaurant  0.04


----Westchester Square----
                  venue  freq
0  Fast Food Restaurant  0.10
1              Pharmacy  0.06
2           Pizza Place  0.06
3            Donut Shop  0.06
4        Sandwich Place  0.06


----Westerleigh----
               venue  freq
0             Arcade   0.5
1  Convenience Store   0.5
2        Yoga Studio   0.0
3  Paella Restaurant   0.0
4           Pharmacy   0.0


----Whitestone----
             venue  freq
0  Bubble Tea Shop  0.25
1      Candy Store  0.25
2    Deli / Bodega  0.25
3     Dance Studio  0.25
4       Kids Store  0.00


----Williamsbridge----
                  venue  freq
0                   Bar  0.25
1             Nightclub  0.25
2            Soup Place  0.25
3  Caribbean Restaurant  0.25
4  Pakistani Restaurant  0.00


----Williamsburg----
          venue  freq
0           Bar  0.09
1   Coffee Shop  0.09
2   Pizza Place  0.06
3    Bagel Shop  0.06
4  Burger Joint  0.03


----Willowbrook----
           venue  freq
0       Bus Stop  0.38
1  Deli / Bodega  0.12
2     Bagel Shop  0.12
3   Intersection  0.12
4    Pizza Place  0.12


----Windsor Terrace----
           venue  freq
0          Plaza  0.07
1           Café  0.07
2  Grocery Store  0.07
3           Park  0.07
4          Diner  0.07


----Wingate----
                  venue  freq
0  Fast Food Restaurant  0.12
1  Gym / Fitness Center  0.06
2             Nightclub  0.06
3                 Field  0.06
4           Bus Station  0.06


----Woodhaven----
           venue  freq
0  Deli / Bodega  0.12
1           Bank  0.08
2       Pharmacy  0.08
3     Restaurant  0.04
4     Donut Shop  0.04


----Woodlawn----
           venue  freq
0  Deli / Bodega  0.17
1    Pizza Place  0.12
2     Playground  0.08
3     Donut Shop  0.04
4          Plaza  0.04


----Woodrow----
              venue  freq
0          Pharmacy  0.10
1      Dessert Shop  0.05
2      Liquor Store  0.05
3  Sushi Restaurant  0.05
4     Grocery Store  0.05


----Woodside----
                       venue  freq
0              Grocery Store  0.08
1            Thai Restaurant  0.06
2        Filipino Restaurant  0.05
3  Latin American Restaurant  0.05
4                     Bakery  0.05


----Yorkville----
                venue  freq
0  Italian Restaurant  0.07
1                 Bar  0.06
2                 Gym  0.06
3         Coffee Shop  0.06
4       Deli / Bodega  0.04


Let's put that into a pandas dataframe

In [36]:
def return_most_common_venues(row, num_top_venues):
    row_categories = row.iloc[1:]
    row_categories_sorted = row_categories.sort_values(ascending=False)
    
    return row_categories_sorted.index.values[0:num_top_venues]

Now let's create the new dataframe and display the top 10 venues for each neighborhood.

In [90]:
num_top_venues = 10

indicators = ['st', 'nd', 'rd']

# create columns according to number of top venues
columns = ['Neighborhood']
for ind in np.arange(num_top_venues):
    try:
        columns.append('{}{} Most Common Venue'.format(ind+1, indicators[ind]))
    except:
        columns.append('{}th Most Common Venue'.format(ind+1))

# create a new dataframe
neighborhoods_venues_sorted = pd.DataFrame(columns=columns)
neighborhoods_venues_sorted['Neighborhood'] = newyork_grouped['Neighborhood']

for ind in np.arange(newyork_grouped.shape[0]):
    neighborhoods_venues_sorted.iloc[ind, 1:] = return_most_common_venues(newyork_grouped.iloc[ind, :], num_top_venues)

neighborhoods_venues_sorted.head()
Out[90]:
Neighborhood 1st Most Common Venue 2nd Most Common Venue 3rd Most Common Venue 4th Most Common Venue 5th Most Common Venue 6th Most Common Venue 7th Most Common Venue 8th Most Common Venue 9th Most Common Venue 10th Most Common Venue
0 Allerton Pizza Place Supermarket Chinese Restaurant Deli / Bodega Bus Station Spanish Restaurant Breakfast Spot Martial Arts Dojo Fast Food Restaurant Pharmacy
1 Annadale Pizza Place Bakery Park Diner Pub Train Station American Restaurant Restaurant Sports Bar Sushi Restaurant
2 Arden Heights Pharmacy Deli / Bodega Bus Stop Coffee Shop Pizza Place Women's Store Filipino Restaurant Event Space Exhibit Factory
3 Arlington Deli / Bodega Grocery Store Scenic Lookout Playground Women's Store Field Event Service Event Space Exhibit Factory
4 Arrochar Italian Restaurant Deli / Bodega Bus Stop Food Truck Supermarket Middle Eastern Restaurant Liquor Store Outdoors & Recreation Bagel Shop Sandwich Place

Now its time to Cluster Neighborhoods

We Run k-means to cluster the neighborhood into 5 clusters.

In [91]:
# set number of clusters
kclusters = 5

newyork_grouped_clustering = newyork_grouped.drop('Neighborhood', 1)

# run k-means clustering
kmeans = KMeans(n_clusters=kclusters, random_state=0).fit(newyork_grouped_clustering)

# check cluster labels generated for each row in the dataframe
kmeans.labels_[0:10] 
Out[91]:
array([1, 1, 0, 0, 1, 1, 1, 1, 1, 1], dtype=int32)

Let's create a new dataframe that includes the cluster as well as the top 10 venues for each neighborhood.

In [92]:
# add clustering labels
neighborhoods_venues_sorted.insert(0, 'Cluster Labels', kmeans.labels_)

newyork_merged = neighborhoods

# merge newyork_grouped with toronto_data to add latitude/longitude for each neighborhood
newyork_merged = newyork_merged.join(neighborhoods_venues_sorted.set_index('Neighborhood'), on='Neighborhood')

newyork_merged.head() # check the last columns!
Out[92]:
Borough Neighborhood Latitude Longitude Cluster Labels 1st Most Common Venue 2nd Most Common Venue 3rd Most Common Venue 4th Most Common Venue 5th Most Common Venue 6th Most Common Venue 7th Most Common Venue 8th Most Common Venue 9th Most Common Venue 10th Most Common Venue
0 Bronx Wakefield 40.894705 -73.847201 1.0 Dessert Shop Pharmacy Donut Shop Laundromat Gas Station Sandwich Place Ice Cream Shop Caribbean Restaurant Farm Fast Food Restaurant
1 Bronx Co-op City 40.874294 -73.829939 1.0 Bus Station Baseball Field Discount Store Chinese Restaurant Park Pharmacy Bagel Shop Grocery Store Fast Food Restaurant Gift Shop
2 Bronx Eastchester 40.887556 -73.827806 1.0 Caribbean Restaurant Deli / Bodega Bus Station Diner Bowling Alley Metro Station Chinese Restaurant Bakery Fast Food Restaurant Seafood Restaurant
3 Bronx Fieldston 40.895437 -73.905643 1.0 Plaza River Bus Station Women's Store Event Service Event Space Exhibit Factory Falafel Restaurant Farm
4 Bronx Riverdale 40.890834 -73.912585 1.0 Park Bus Station Playground Plaza Bank Gym Home Service Baseball Field Food Truck Flower Shop
In [93]:
newyork_merged.isnull()
Out[93]:
Borough Neighborhood Latitude Longitude Cluster Labels 1st Most Common Venue 2nd Most Common Venue 3rd Most Common Venue 4th Most Common Venue 5th Most Common Venue 6th Most Common Venue 7th Most Common Venue 8th Most Common Venue 9th Most Common Venue 10th Most Common Venue
0 False False False False False False False False False False False False False False False
1 False False False False False False False False False False False False False False False
2 False False False False False False False False False False False False False False False
3 False False False False False False False False False False False False False False False
4 False False False False False False False False False False False False False False False
5 False False False False False False False False False False False False False False False
6 False False False False False False False False False False False False False False False
7 False False False False False False False False False False False False False False False
8 False False False False False False False False False False False False False False False
9 False False False False False False False False False False False False False False False
10 False False False False False False False False False False False False False False False
11 False False False False False False False False False False False False False False False
12 False False False False False False False False False False False False False False False
13 False False False False False False False False False False False False False False False
14 False False False False False False False False False False False False False False False
15 False False False False False False False False False False False False False False False
16 False False False False False False False False False False False False False False False
17 False False False False False False False False False False False False False False False
18 False False False False False False False False False False False False False False False
19 False False False False False False False False False False False False False False False
20 False False False False False False False False False False False False False False False
21 False False False False False False False False False False False False False False False
22 False False False False False False False False False False False False False False False
23 False False False False False False False False False False False False False False False
24 False False False False False False False False False False False False False False False
25 False False False False False False False False False False False False False False False
26 False False False False False False False False False False False False False False False
27 False False False False False False False False False False False False False False False
28 False False False False False False False False False False False False False False False
29 False False False False False False False False False False False False False False False
30 False False False False False False False False False False False False False False False
31 False False False False False False False False False False False False False False False
32 False False False False False False False False False False False False False False False
33 False False False False False False False False False False False False False False False
34 False False False False False False False False False False False False False False False
35 False False False False False False False False False False False False False False False
36 False False False False False False False False False False False False False False False
37 False False False False False False False False False False False False False False False
38 False False False False False False False False False False False False False False False
39 False False False False False False False False False False False False False False False
40 False False False False False False False False False False False False False False False
41 False False False False False False False False False False False False False False False
42 False False False False False False False False False False False False False False False
43 False False False False False False False False False False False False False False False
44 False False False False False False False False False False False False False False False
45 False False False False False False False False False False False False False False False
46 False False False False False False False False False False False False False False False
47 False False False False False False False False False False False False False False False
48 False False False False False False False False False False False False False False False
49 False False False False False False False False False False False False False False False
50 False False False False False False False False False False False False False False False
51 False False False False False False False False False False False False False False False
52 False False False False False False False False False False False False False False False
53 False False False False False False False False False False False False False False False
54 False False False False False False False False False False False False False False False
55 False False False False False False False False False False False False False False False
56 False False False False False False False False False False False False False False False
57 False False False False False False False False False False False False False False False
58 False False False False False False False False False False False False False False False
59 False False False False False False False False False False False False False False False
60 False False False False False False False False False False False False False False False
61 False False False False False False False False False False False False False False False
62 False False False False False False False False False False False False False False False
63 False False False False False False False False False False False False False False False
64 False False False False False False False False False False False False False False False
65 False False False False False False False False False False False False False False False
66 False False False False False False False False False False False False False False False
67 False False False False False False False False False False False False False False False
68 False False False False False False False False False False False False False False False
69 False False False False False False False False False False False False False False False
70 False False False False False False False False False False False False False False False
71 False False False False False False False False False False False False False False False
72 False False False False False False False False False False False False False False False
73 False False False False False False False False False False False False False False False
74 False False False False False False False False False False False False False False False
75 False False False False False False False False False False False False False False False
76 False False False False False False False False False False False False False False False
77 False False False False False False False False False False False False False False False
78 False False False False False False False False False False False False False False False
79 False False False False False False False False False False False False False False False
80 False False False False False False False False False False False False False False False
81 False False False False False False False False False False False False False False False
82 False False False False False False False False False False False False False False False
83 False False False False False False False False False False False False False False False
84 False False False False False False False False False False False False False False False
85 False False False False False False False False False False False False False False False
86 False False False False False False False False False False False False False False False
87 False False False False False False False False False False False False False False False
88 False False False False False False False False False False False False False False False
89 False False False False False False False False False False False False False False False
90 False False False False False False False False False False False False False False False
91 False False False False False False False False False False False False False False False
92 False False False False False False False False False False False False False False False
93 False False False False False False False False False False False False False False False
94 False False False False False False False False False False False False False False False
95 False False False False False False False False False False False False False False False
96 False False False False False False False False False False False False False False False
97 False False False False False False False False False False False False False False False
98 False False False False False False False False False False False False False False False
99 False False False False False False False False False False False False False False False
100 False False False False False False False False False False False False False False False
101 False False False False False False False False False False False False False False False
102 False False False False False False False False False False False False False False False
103 False False False False False False False False False False False False False False False
104 False False False False False False False False False False False False False False False
105 False False False False False False False False False False False False False False False
106 False False False False False False False False False False False False False False False
107 False False False False False False False False False False False False False False False
108 False False False False False False False False False False False False False False False
109 False False False False False False False False False False False False False False False
110 False False False False False False False False False False False False False False False
111 False False False False False False False False False False False False False False False
112 False False False False False False False False False False False False False False False
113 False False False False False False False False False False False False False False False
114 False False False False False False False False False False False False False False False
115 False False False False False False False False False False False False False False False
116 False False False False False False False False False False False False False False False
117 False False False False False False False False False False False False False False False
118 False False False False False False False False False False False False False False False
119 False False False False False False False False False False False False False False False
120 False False False False False False False False False False False False False False False
121 False False False False False False False False False False False False False False False
122 False False False False False False False False False False False False False False False
123 False False False False False False False False False False False False False False False
124 False False False False False False False False False False False False False False False
125 False False False False False False False False False False False False False False False
126 False False False False False False False False False False False False False False False
127 False False False False False False False False False False False False False False False
128 False False False False False False False False False False False False False False False
129 False False False False False False False False False False False False False False False
130 False False False False False False False False False False False False False False False
131 False False False False False False False False False False False False False False False
132 False False False False False False False False False False False False False False False
133 False False False False False False False False False False False False False False False
134 False False False False False False False False False False False False False False False
135 False False False False False False False False False False False False False False False
136 False False False False False False False False False False False False False False False
137 False False False False False False False False False False False False False False False
138 False False False False False False False False False False False False False False False
139 False False False False False False False False False False False False False False False
140 False False False False False False False False False False False False False False False
141 False False False False False False False False False False False False False False False
142 False False False False False False False False False False False False False False False
143 False False False False False False False False False False False False False False False
144 False False False False False False False False False False False False False False False
145 False False False False False False False False False False False False False False False
146 False False False False False False False False False False False False False False False
147 False False False False False False False False False False False False False False False
148 False False False False False False False False False False False False False False False
149 False False False False False False False False False False False False False False False
150 False False False False False False False False False False False False False False False
151 False False False False False False False False False False False False False False False
152 False False False False False False False False False False False False False False False
153 False False False False False False False False False False False False False False False
154 False False False False False False False False False False False False False False False
155 False False False False False False False False False False False False False False False
156 False False False False False False False False False False False False False False False
157 False False False False False False False False False False False False False False False
158 False False False False False False False False False False False False False False False
159 False False False False False False False False False False False False False False False
160 False False False False False False False False False False False False False False False
161 False False False False False False False False False False False False False False False
162 False False False False False False False False False False False False False False False
163 False False False False False False False False False False False False False False False
164 False False False False False False False False False False False False False False False
165 False False False False False False False False False False False False False False False
166 False False False False False False False False False False False False False False False
167 False False False False False False False False False False False False False False False
168 False False False False False False False False False False False False False False False
169 False False False False False False False False False False False False False False False
170 False False False False False False False False False False False False False False False
171 False False False False False False False False False False False False False False False
172 False False False False False False False False False False False False False False False
173 False False False False False False False False False False False False False False False
174 False False False False False False False False False False False False False False False
175 False False False False False False False False False False False False False False False
176 False False False False False False False False False False False False False False False
177 False False False False False False False False False False False False False False False
178 False False False False False False False False False False False False False False False
179 False False False False False False False False False False False False False False False
180 False False False False False False False False False False False False False False False
181 False False False False False False False False False False False False False False False
182 False False False False False False False False False False False False False False False
183 False False False False False False False False False False False False False False False
184 False False False False False False False False False False False False False False False
185 False False False False False False False False False False False False False False False
186 False False False False False False False False False False False False False False False
187 False False False False False False False False False False False False False False False
188 False False False False False False False False False False False False False False False
189 False False False False False False False False False False False False False False False
190 False False False False False False False False False False False False False False False
191 False False False False False False False False False False False False False False False
192 False False False False False False False False False False False False False False False
193 False False False False False False False False False False False False False False False
194 False False False False False False False False False False False False False False False
195 False False False False False False False False False False False False False False False
196 False False False False False False False False False False False False False False False
197 False False False False False False False False False False False False False False False
198 False False False False False False False False False False False False False False False
199 False False False False False False False False False False False False False False False
200 False False False False False False False False False False False False False False False
201 False False False False False False False False False False False False False False False
202 False False False False False False False False False False False False False False False
203 False False False False False False False False False False False False False False False
204 False False False False False False False False False False False False False False False
205 False False False False False False False False False False False False False False False
206 False False False False False False False False False False False False False False False
207 False False False False False False False False False False False False False False False
208 False False False False False False False False False False False False False False False
209 False False False False False False False False False False False False False False False
210 False False False False False False False False False False False False False False False
211 False False False False False False False False False False False False False False False
212 False False False False False False False False False False False False False False False
213 False False False False False False False False False False False False False False False
214 False False False False False False False False False False False False False False False
215 False False False False False False False False False False False False False False False
216 False False False False False False False False False False False False False False False
217 False False False False False False False False False False False False False False False
218 False False False False False False False False False False False False False False False
219 False False False False False False False False False False False False False False False
220 False False False False False False False False False False False False False False False
221 False False False False False False False False False False False False False False False
222 False False False False False False False False False False False False False False False
223 False False False False False False False False False False False False False False False
224 False False False False False False False False False False False False False False False
225 False False False False False False False False False False False False False False False
226 False False False False False False False False False False False False False False False
227 False False False False False False False False False False False False False False False
228 False False False False False False False False False False False False False False False
229 False False False False False False False False False False False False False False False
230 False False False False False False False False False False False False False False False
231 False False False False False False False False False False False False False False False
232 False False False False False False False False False False False False False False False
233 False False False False False False False False False False False False False False False
234 False False False False False False False False False False False False False False False
235 False False False False False False False False False False False False False False False
236 False False False False False False False False False False False False False False False
237 False False False False False False False False False False False False False False False
238 False False False False False False False False False False False False False False False
239 False False False False False False False False False False False False False False False
240 False False False False False False False False False False False False False False False
241 False False False False False False False False False False False False False False False
242 False False False False False False False False False False False False False False False
243 False False False False False False False False False False False False False False False
244 False False False False False False False False False False False False False False False
245 False False False False False False False False False False False False False False False
246 False False False False False False False False False False False False False False False
247 False False False False False False False False False False False False False False False
248 False False False False False False False False False False False False False False False
249 False False False False False False False False False False False False False False False
250 False False False False False False False False False False False False False False False
251 False False False False False False False False False False False False False False False
252 False False False False False False False False False False False False False False False
253 False False False False False False False False False False False False False False False
254 False False False False False False False False False False False False False False False
255 False False False False True True True True True True True True True True True
256 False False False False False False False False False False False False False False False
257 False False False False True True True True True True True True True True True
258 False False False False False False False False False False False False False False False
259 False False False False False False False False False False False False False False False
260 False False False False False False False False False False False False False False False
261 False False False False False False False False False False False False False False False
262 False False False False False False False False False False False False False False False
263 False False False False False False False False False False False False False False False
264 False False False False False False False False False False False False False False False
265 False False False False False False False False False False False False False False False
266 False False False False False False False False False False False False False False False
267 False False False False False False False False False False False False False False False
268 False False False False False False False False False False False False False False False
269 False False False False False False False False False False False False False False False
270 False False False False False False False False False False False False False False False
271 False False False False False False False False False False False False False False False
272 False False False False False False False False False False False False False False False
273 False False False False False False False False False False False False False False False
274 False False False False False False False False False False False False False False False
275 False False False False False False False False False False False False False False False
276 False False False False False False False False False False False False False False False
277 False False False False False False False False False False False False False False False
278 False False False False False False False False False False False False False False False
279 False False False False False False False False False False False False False False False
280 False False False False False False False False False False False False False False False
281 False False False False False False False False False False False False False False False
282 False False False False False False False False False False False False False False False
283 False False False False False False False False False False False False False False False
284 False False False False False False False False False False False False False False False
285 False False False False False False False False False False False False False False False
286 False False False False False False False False False False False False False False False
287 False False False False False False False False False False False False False False False
288 False False False False False False False False False False False False False False False
289 False False False False False False False False False False False False False False False
290 False False False False False False False False False False False False False False False
291 False False False False False False False False False False False False False False False
292 False False False False False False False False False False False False False False False
293 False False False False False False False False False False False False False False False
294 False False False False False False False False False False False False False False False
295 False False False False False False False False False False False False False False False
296 False False False False False False False False False False False False False False False
297 False False False False False False False False False False False False False False False
298 False False False False False False False False False False False False False False False
299 False False False False False False False False False False False False False False False
300 False False False False False False False False False False False False False False False
301 False False False False False False False False False False False False False False False
302 False False False False False False False False False False False False False False False
303 False False False False False False False False False False False False False False False
304 False False False False False False False False False False False False False False False
305 False False False False False False False False False False False False False False False
In [94]:
newyork_merged = newyork_merged.dropna()

newyork_merged
Out[94]:
Borough Neighborhood Latitude Longitude Cluster Labels 1st Most Common Venue 2nd Most Common Venue 3rd Most Common Venue 4th Most Common Venue 5th Most Common Venue 6th Most Common Venue 7th Most Common Venue 8th Most Common Venue 9th Most Common Venue 10th Most Common Venue
0 Bronx Wakefield 40.894705 -73.847201 1.0 Dessert Shop Pharmacy Donut Shop Laundromat Gas Station Sandwich Place Ice Cream Shop Caribbean Restaurant Farm Fast Food Restaurant
1 Bronx Co-op City 40.874294 -73.829939 1.0 Bus Station Baseball Field Discount Store Chinese Restaurant Park Pharmacy Bagel Shop Grocery Store Fast Food Restaurant Gift Shop
2 Bronx Eastchester 40.887556 -73.827806 1.0 Caribbean Restaurant Deli / Bodega Bus Station Diner Bowling Alley Metro Station Chinese Restaurant Bakery Fast Food Restaurant Seafood Restaurant
3 Bronx Fieldston 40.895437 -73.905643 1.0 Plaza River Bus Station Women's Store Event Service Event Space Exhibit Factory Falafel Restaurant Farm
4 Bronx Riverdale 40.890834 -73.912585 1.0 Park Bus Station Playground Plaza Bank Gym Home Service Baseball Field Food Truck Flower Shop
5 Bronx Kingsbridge 40.881687 -73.902818 1.0 Pizza Place Bakery Bar Latin American Restaurant Mexican Restaurant Sandwich Place Supermarket Fried Chicken Joint Spanish Restaurant Donut Shop
6 Manhattan Marble Hill 40.876551 -73.910660 1.0 Sandwich Place Coffee Shop Yoga Studio Kids Store Big Box Store Shopping Mall Gym Miscellaneous Shop Seafood Restaurant Clothing Store
7 Bronx Woodlawn 40.898273 -73.867315 1.0 Deli / Bodega Pizza Place Playground Rental Car Location Plaza Supermarket Park Food Truck Bakery Pharmacy
8 Bronx Norwood 40.877224 -73.879391 1.0 Park Pizza Place Bank Deli / Bodega American Restaurant Pharmacy Mexican Restaurant Coffee Shop Pet Store Sandwich Place
9 Bronx Williamsbridge 40.881039 -73.857446 1.0 Nightclub Caribbean Restaurant Soup Place Bar Financial or Legal Service Event Space Exhibit Factory Falafel Restaurant Farm
10 Bronx Baychester 40.866858 -73.835798 1.0 Donut Shop Gym / Fitness Center Discount Store Sandwich Place Bank Fast Food Restaurant Electronics Store Bus Station Pizza Place Supermarket
11 Bronx Pelham Parkway 40.857413 -73.854756 1.0 Frozen Yogurt Shop Pizza Place Italian Restaurant Bus Station Chinese Restaurant Performing Arts Venue Metro Station Coffee Shop Bank Bakery
12 Bronx City Island 40.847247 -73.786488 1.0 Harbor / Marina Seafood Restaurant Thrift / Vintage Store French Restaurant Art Gallery Baseball Field Bar Bank Boat or Ferry Smoke Shop
13 Bronx Bedford Park 40.870185 -73.885512 1.0 Pizza Place Diner Deli / Bodega Supermarket Mexican Restaurant Chinese Restaurant Sandwich Place Coffee Shop Bakery Bar
14 Bronx University Heights 40.855727 -73.910416 1.0 Pizza Place Bus Station Sandwich Place Fast Food Restaurant Donut Shop Bakery Latin American Restaurant Bank Pharmacy Supermarket
15 Bronx Morris Heights 40.847898 -73.919672 1.0 IT Services Recreation Center Bus Station Bank Pharmacy Latin American Restaurant Pizza Place Spanish Restaurant Grocery Store Falafel Restaurant
16 Bronx Fordham 40.860997 -73.896427 1.0 Mobile Phone Shop Fast Food Restaurant Shoe Store Gym / Fitness Center Spanish Restaurant Bank Donut Shop Pharmacy Supplement Shop Pizza Place
17 Bronx East Tremont 40.842696 -73.887356 1.0 Pizza Place Shoe Store Cosmetics Shop Spanish Restaurant Discount Store Fast Food Restaurant Donut Shop Lounge Café Bank
18 Bronx West Farms 40.839475 -73.877745 1.0 Bus Station Donut Shop Metro Station Sandwich Place Scenic Lookout Latin American Restaurant Lounge Bank Playground Coffee Shop
19 Bronx High Bridge 40.836623 -73.926102 1.0 Pharmacy Supermarket Pizza Place Chinese Restaurant Bus Station Deli / Bodega Seafood Restaurant Sandwich Place Market Asian Restaurant
20 Bronx Melrose 40.819754 -73.909422 1.0 Pharmacy Pizza Place Sandwich Place Gym / Fitness Center Supermarket Martial Arts Dojo Supplement Shop Chinese Restaurant Mexican Restaurant Paper / Office Supplies Store
21 Bronx Mott Haven 40.806239 -73.916100 1.0 Spanish Restaurant Gym Donut Shop Pizza Place Storage Facility Latin American Restaurant Fish & Chips Shop Mobile Phone Shop Grocery Store Peruvian Restaurant
22 Bronx Port Morris 40.801664 -73.913221 1.0 Storage Facility Distillery Cupcake Shop Music Venue Brewery Furniture / Home Store Spanish Restaurant Grocery Store Paper / Office Supplies Store Donut Shop
23 Bronx Longwood 40.815099 -73.895788 1.0 Sandwich Place Fast Food Restaurant Grocery Store Donut Shop Diner Latin American Restaurant Women's Store Event Space Exhibit Factory
24 Bronx Hunts Point 40.809730 -73.883315 1.0 Restaurant Spanish Restaurant Farmers Market Grocery Store BBQ Joint Café Gourmet Shop Pizza Place Waste Facility Juice Bar
25 Bronx Morrisania 40.823592 -73.901506 1.0 Discount Store Bus Station Fast Food Restaurant Chinese Restaurant Donut Shop Pharmacy Latin American Restaurant Seafood Restaurant Bowling Alley Fish Market
26 Bronx Soundview 40.821012 -73.865746 1.0 Chinese Restaurant Grocery Store Fried Chicken Joint Video Store Health & Beauty Service Burger Joint Pharmacy Latin American Restaurant Playground Basketball Court
27 Bronx Clason Point 40.806551 -73.854144 3.0 Park Bus Stop Moving Target Pool Grocery Store Boat or Ferry South American Restaurant Women's Store Financial or Legal Service Factory
28 Bronx Throgs Neck 40.815109 -73.816350 1.0 Deli / Bodega Bar American Restaurant Coffee Shop Pizza Place Sports Bar Asian Restaurant Italian Restaurant Juice Bar Financial or Legal Service
29 Bronx Country Club 40.844246 -73.824099 1.0 Sandwich Place Chinese Restaurant Flea Market Comic Shop Athletics & Sports Playground Women's Store Event Space Exhibit Factory
30 Bronx Parkchester 40.837938 -73.856003 1.0 Supermarket Women's Store Pizza Place Kids Store Bank American Restaurant Mattress Store Shipping Store Chinese Restaurant Mexican Restaurant
31 Bronx Westchester Square 40.840619 -73.842194 1.0 Fast Food Restaurant Indie Theater Sandwich Place Pharmacy Pizza Place Donut Shop Bus Line Asian Restaurant Gym Mexican Restaurant
32 Bronx Van Nest 40.843608 -73.866299 1.0 Deli / Bodega Pizza Place Board Shop Chinese Restaurant Bus Station Hookah Bar Caribbean Restaurant Middle Eastern Restaurant Supermarket Spa
33 Bronx Morris Park 40.847549 -73.850402 1.0 Pizza Place Burger Joint Deli / Bodega Bakery Buffet Supermarket Bar Bank Pharmacy Sandwich Place
34 Bronx Belmont 40.857277 -73.888452 1.0 Italian Restaurant Pizza Place Deli / Bodega Bakery Donut Shop Dessert Shop Bank Spanish Restaurant Fish Market Bar
35 Bronx Spuyten Duyvil 40.881395 -73.917190 1.0 Park Food Pharmacy Tennis Court Tennis Stadium Thai Restaurant Asian Restaurant Bank Bus Line Intersection
36 Bronx North Riverdale 40.908543 -73.904531 1.0 Pizza Place Italian Restaurant Bank Bus Station Moving Target Grocery Store Mexican Restaurant Coffee Shop Bagel Shop Sandwich Place
37 Bronx Pelham Bay 40.850641 -73.832074 1.0 Italian Restaurant Bank Donut Shop Convenience Store Deli / Bodega Gym / Fitness Center Fast Food Restaurant Sandwich Place BBQ Joint Bagel Shop
38 Bronx Schuylerville 40.826580 -73.826203 1.0 Pharmacy Pizza Place Mexican Restaurant Bar Bank American Restaurant Supermarket Fast Food Restaurant Hobby Shop Sandwich Place
39 Bronx Edgewater Park 40.821986 -73.813885 1.0 Italian Restaurant Deli / Bodega Donut Shop Pizza Place Asian Restaurant Sports Bar Food & Drink Shop Park Bar Liquor Store
40 Bronx Castle Hill 40.819014 -73.848027 1.0 Pharmacy Market Spanish Restaurant Diner Park Pizza Place Bank Deli / Bodega Baseball Field Field
41 Bronx Olinville 40.871371 -73.863324 1.0 Caribbean Restaurant Fried Chicken Joint Convenience Store Metro Station Mexican Restaurant Laundromat Food Basketball Court Supermarket Food Court
42 Bronx Pelham Gardens 40.862966 -73.841612 1.0 Bus Station Pharmacy Donut Shop Pizza Place Italian Restaurant Construction & Landscaping Spanish Restaurant Boat or Ferry Grocery Store Chinese Restaurant
43 Bronx Concourse 40.834284 -73.915589 1.0 Deli / Bodega Bakery Spanish Restaurant Grocery Store Bus Station Art Gallery Sandwich Place Liquor Store Donut Shop Supermarket
44 Bronx Unionport 40.829774 -73.850535 1.0 Donut Shop Ice Cream Shop Latin American Restaurant Seafood Restaurant Lounge Sandwich Place Pizza Place Caribbean Restaurant Comfort Food Restaurant Discount Store
45 Bronx Edenwald 40.884561 -73.848083 1.0 Supermarket Gas Station Grocery Store Fish Market Gift Shop Pizza Place Women's Store Filipino Restaurant Event Space Exhibit
46 Brooklyn Bay Ridge 40.625801 -74.030621 1.0 Italian Restaurant Spa Greek Restaurant Pizza Place American Restaurant Pharmacy Bar Playground Hookah Bar Ice Cream Shop
47 Brooklyn Bensonhurst 40.611009 -73.995180 1.0 Italian Restaurant Sushi Restaurant Donut Shop Ice Cream Shop Pizza Place Chinese Restaurant Factory Bakery Liquor Store Cha Chaan Teng
48 Brooklyn Sunset Park 40.645103 -74.010316 1.0 Latin American Restaurant Pizza Place Mexican Restaurant Bank Bakery Deli / Bodega Pharmacy Fried Chicken Joint Mobile Phone Shop Gym
49 Brooklyn Greenpoint 40.730201 -73.954241 1.0 Bar Pizza Place Coffee Shop Cocktail Bar Yoga Studio Grocery Store Record Shop Sushi Restaurant Boutique Mexican Restaurant
50 Brooklyn Gravesend 40.595260 -73.973471 1.0 Pizza Place Bakery Italian Restaurant Lounge Bus Station Metro Station Bar Pharmacy Eastern European Restaurant Breakfast Spot
51 Brooklyn Brighton Beach 40.576825 -73.965094 1.0 Russian Restaurant Restaurant Eastern European Restaurant Beach Fast Food Restaurant Mobile Phone Shop Bank Pharmacy Gourmet Shop Sushi Restaurant
52 Brooklyn Sheepshead Bay 40.586890 -73.943186 1.0 Turkish Restaurant Dessert Shop Sandwich Place Yoga Studio Italian Restaurant Karaoke Bar Grocery Store Miscellaneous Shop Outlet Store Pizza Place
53 Brooklyn Manhattan Terrace 40.614433 -73.957438 1.0 Pizza Place Donut Shop Coffee Shop Ice Cream Shop Bakery Japanese Restaurant Laundromat Cosmetics Shop Convenience Store Organic Grocery
54 Brooklyn Flatbush 40.636326 -73.958401 1.0 Coffee Shop Caribbean Restaurant Pharmacy Mexican Restaurant Donut Shop Pizza Place Bagel Shop Plaza Bank Lounge
55 Brooklyn Crown Heights 40.670829 -73.943291 1.0 Pizza Place Café Museum Convenience Store Bagel Shop Salon / Barbershop Candy Store Bookstore Bakery Coffee Shop
56 Brooklyn East Flatbush 40.641718 -73.936103 1.0 Hardware Store Print Shop Caribbean Restaurant Pharmacy Moving Target Fast Food Restaurant Supermarket Food & Drink Shop Department Store Park
57 Brooklyn Kensington 40.642382 -73.980421 1.0 Grocery Store Thai Restaurant Ice Cream Shop Pizza Place Pharmacy Sandwich Place Japanese Restaurant Spa Mexican Restaurant Gas Station
58 Brooklyn Windsor Terrace 40.656946 -73.980073 1.0 Café Diner Grocery Store Plaza Park Italian Restaurant Bagel Shop Butcher Deli / Bodega Sushi Restaurant
59 Brooklyn Prospect Heights 40.676822 -73.964859 1.0 Bar Café Wine Shop Mexican Restaurant Thai Restaurant Cocktail Bar Pizza Place Gourmet Shop New American Restaurant Diner
60 Brooklyn Brownsville 40.663950 -73.910235 1.0 Restaurant Chinese Restaurant Park Playground Pharmacy Farmers Market Caribbean Restaurant Burger Joint Performing Arts Venue Spanish Restaurant
61 Brooklyn Williamsburg 40.707144 -73.958115 1.0 Bar Coffee Shop Bagel Shop Pizza Place Japanese Restaurant Gym Steakhouse Pet Store Park Middle Eastern Restaurant
62 Brooklyn Bushwick 40.698116 -73.925258 1.0 Bar Coffee Shop Deli / Bodega Mexican Restaurant Pizza Place Thrift / Vintage Store Discount Store Bakery Chinese Restaurant Italian Restaurant
63 Brooklyn Bedford Stuyvesant 40.687232 -73.941785 1.0 Pizza Place Café Deli / Bodega Bar Coffee Shop Japanese Restaurant Fried Chicken Joint Boutique Gourmet Shop Park
64 Brooklyn Brooklyn Heights 40.695864 -73.993782 1.0 Yoga Studio Deli / Bodega Park Bakery Gym Italian Restaurant Cosmetics Shop Thai Restaurant Grocery Store American Restaurant
65 Brooklyn Cobble Hill 40.687920 -73.998561 1.0 Playground Bar Pizza Place Coffee Shop Yoga Studio Cocktail Bar Deli / Bodega Ice Cream Shop Italian Restaurant Mediterranean Restaurant
66 Brooklyn Carroll Gardens 40.680540 -73.994654 1.0 Italian Restaurant Pizza Place Coffee Shop Bakery Cocktail Bar Wine Shop Bar Spa Gym / Fitness Center Gourmet Shop
67 Brooklyn Red Hook 40.676253 -74.012759 1.0 Seafood Restaurant Art Gallery Park American Restaurant Bar Bagel Shop Farm Flower Shop New American Restaurant Ice Cream Shop
68 Brooklyn Gowanus 40.673931 -73.994441 1.0 Italian Restaurant Bar Deli / Bodega Furniture / Home Store Gym / Fitness Center Pizza Place Coffee Shop Art Gallery Breakfast Spot Mexican Restaurant
69 Brooklyn Fort Greene 40.688527 -73.972906 1.0 Italian Restaurant Coffee Shop Flower Shop Theater Opera House French Restaurant Cocktail Bar New American Restaurant Yoga Studio Pizza Place
70 Brooklyn Park Slope 40.672321 -73.977050 1.0 Coffee Shop American Restaurant Burger Joint Italian Restaurant Pizza Place Japanese Restaurant Pet Store Chinese Restaurant Spa Bookstore
71 Brooklyn Cypress Hills 40.682391 -73.876616 1.0 Fried Chicken Joint Chinese Restaurant Latin American Restaurant Ice Cream Shop Fast Food Restaurant Donut Shop Pizza Place Metro Station Mexican Restaurant Seafood Restaurant
72 Brooklyn East New York 40.669926 -73.880699 1.0 Fast Food Restaurant Bus Station Event Service Convenience Store Pizza Place Salon / Barbershop Latin American Restaurant Plaza Gym Metro Station
73 Brooklyn Starrett City 40.647589 -73.879370 1.0 Shopping Mall American Restaurant Donut Shop Pizza Place Caribbean Restaurant Pharmacy Moving Target Convenience Store Bus Stop Supermarket
74 Brooklyn Canarsie 40.635564 -73.902093 1.0 Thai Restaurant Caribbean Restaurant Gym IT Services Asian Restaurant Women's Store Filipino Restaurant Event Space Exhibit Factory
75 Brooklyn Flatlands 40.630446 -73.929113 1.0 Pharmacy Fried Chicken Joint Fast Food Restaurant Caribbean Restaurant Athletics & Sports Paper / Office Supplies Store Chinese Restaurant Park Lounge Electronics Store
76 Brooklyn Mill Island 40.606336 -73.908186 3.0 Pool Financial or Legal Service Ethiopian Restaurant Event Service Event Space Exhibit Factory Falafel Restaurant Farm Farmers Market
77 Brooklyn Manhattan Beach 40.577914 -73.943537 1.0 Café Pizza Place Playground Beach Bus Stop Food Sandwich Place Ice Cream Shop Field Fast Food Restaurant
78 Brooklyn Coney Island 40.574293 -73.988683 1.0 Baseball Stadium Caribbean Restaurant Monument / Landmark Theme Park Ride / Attraction Beach Skating Rink Pharmacy Athletics & Sports Park Pizza Place
79 Brooklyn Bath Beach 40.599519 -73.998752 1.0 Chinese Restaurant Pharmacy Sushi Restaurant Italian Restaurant Bubble Tea Shop Donut Shop Fast Food Restaurant Women's Store Clothing Store Surf Spot
80 Brooklyn Borough Park 40.633131 -73.990498 1.0 Bank Deli / Bodega Pizza Place Café Pharmacy Japanese Restaurant Hotel Breakfast Spot Fast Food Restaurant Men's Store
81 Brooklyn Dyker Heights 40.619219 -74.019314 1.0 Playground Bagel Shop Golf Course Plaza Grocery Store School Cosmetics Shop Burger Joint Dance Studio Exhibit
82 Brooklyn Gerritsen Beach 40.590848 -73.930102 1.0 Pizza Place Ice Cream Shop Bar Skating Rink Bagel Shop Liquor Store Boat or Ferry Gas Station Convenience Store Seafood Restaurant
83 Brooklyn Marine Park 40.609748 -73.931344 1.0 Pizza Place Baseball Field Basketball Court Deli / Bodega Soccer Field Chinese Restaurant Athletics & Sports Gym Ice Cream Shop Farmers Market
84 Brooklyn Clinton Hill 40.693229 -73.967843 1.0 Italian Restaurant Pizza Place Wine Shop Mexican Restaurant Japanese Restaurant Thai Restaurant Deli / Bodega Indian Restaurant Restaurant Yoga Studio
85 Brooklyn Sea Gate 40.576375 -74.007873 1.0 Beach Bus Station Spa Home Service Video Store IT Services Women's Store Filipino Restaurant Event Space Exhibit
86 Brooklyn Downtown 40.690844 -73.983463 1.0 Coffee Shop Burger Joint Chinese Restaurant Sandwich Place Bar Martial Arts Dojo Middle Eastern Restaurant Cocktail Bar Performing Arts Venue Caribbean Restaurant
87 Brooklyn Boerum Hill 40.685683 -73.983748 1.0 Bar Dance Studio Coffee Shop Furniture / Home Store Sandwich Place Arts & Crafts Store French Restaurant Deli / Bodega Yoga Studio Gym / Fitness Center
88 Brooklyn Prospect Lefferts Gardens 40.658420 -73.954899 1.0 Bakery Café Pizza Place Caribbean Restaurant Supermarket Liquor Store Wine Shop Indian Restaurant Ice Cream Shop Deli / Bodega
89 Brooklyn Ocean Hill 40.678403 -73.913068 1.0 Grocery Store Deli / Bodega Food Southern / Soul Food Restaurant Bus Stop Fried Chicken Joint Playground Park Mexican Restaurant Seafood Restaurant
90 Brooklyn City Line 40.678570 -73.867976 1.0 Donut Shop Shoe Store Pharmacy Grocery Store Mexican Restaurant Chinese Restaurant Mobile Phone Shop Ski Area Coffee Shop Fast Food Restaurant
91 Brooklyn Bergen Beach 40.615150 -73.898556 1.0 Harbor / Marina Donut Shop Athletics & Sports Playground Baseball Field Women's Store Field Event Service Event Space Exhibit
92 Brooklyn Midwood 40.625596 -73.957595 1.0 Pizza Place Pharmacy Moving Target Field Video Game Store Ice Cream Shop Convenience Store Bagel Shop Bakery Candy Store
93 Brooklyn Prospect Park South 40.647009 -73.962613 1.0 Caribbean Restaurant Mobile Phone Shop Pizza Place Pharmacy Grocery Store Fast Food Restaurant Fried Chicken Joint Donut Shop Women's Store Mexican Restaurant
94 Brooklyn Georgetown 40.623845 -73.916075 1.0 Bank Donut Shop Breakfast Spot Pharmacy Italian Restaurant Shopping Mall Shipping Store Sandwich Place Pizza Place Pet Store
95 Brooklyn East Williamsburg 40.708492 -73.938858 1.0 Bar Bakery Cocktail Bar Coffee Shop Deli / Bodega Concert Hall Music Venue Café Mexican Restaurant Sandwich Place
96 Brooklyn North Side 40.714823 -73.958809 1.0 Coffee Shop Pizza Place Bar Yoga Studio Wine Bar American Restaurant Jewelry Store Burger Joint Seafood Restaurant Movie Theater
97 Brooklyn South Side 40.710861 -73.958001 1.0 Bar Coffee Shop Pizza Place American Restaurant Yoga Studio Wine Bar Breakfast Spot Chinese Restaurant South American Restaurant Burger Joint
98 Brooklyn Ocean Parkway 40.613060 -73.968367 1.0 Liquor Store Pizza Place Bus Stop Supermarket Paper / Office Supplies Store Grocery Store Bus Station Chinese Restaurant Bakery Bagel Shop
99 Brooklyn Fort Hamilton 40.614768 -74.031979 1.0 Deli / Bodega Italian Restaurant Bank Gym / Fitness Center Sandwich Place Pizza Place Diner Steakhouse Bus Stop Chinese Restaurant
100 Manhattan Chinatown 40.715618 -73.994279 1.0 Chinese Restaurant Cocktail Bar American Restaurant Bakery Spa Salon / Barbershop Vietnamese Restaurant Optical Shop Dumpling Restaurant Mexican Restaurant
101 Manhattan Washington Heights 40.851903 -73.936900 1.0 Café Grocery Store Bakery Chinese Restaurant Mobile Phone Shop Latin American Restaurant Donut Shop Spanish Restaurant Coffee Shop Mexican Restaurant
102 Manhattan Inwood 40.867684 -73.921210 1.0 Mexican Restaurant Restaurant Café Lounge Pizza Place Bakery Wine Bar Deli / Bodega Park American Restaurant
103 Manhattan Hamilton Heights 40.823604 -73.949688 1.0 Pizza Place Deli / Bodega Coffee Shop Mexican Restaurant Café Liquor Store Indian Restaurant Sushi Restaurant Park Sandwich Place
104 Manhattan Manhattanville 40.816934 -73.957385 1.0 Coffee Shop Park Chinese Restaurant Liquor Store Seafood Restaurant Mexican Restaurant Sushi Restaurant Italian Restaurant Music School Falafel Restaurant
105 Manhattan Central Harlem 40.815976 -73.943211 1.0 Cosmetics Shop French Restaurant African Restaurant Bar American Restaurant Seafood Restaurant Chinese Restaurant Ethiopian Restaurant Bookstore Bagel Shop
106 Manhattan East Harlem 40.792249 -73.944182 1.0 Mexican Restaurant Thai Restaurant Bakery Deli / Bodega Latin American Restaurant French Restaurant Spanish Restaurant Gym Grocery Store Beer Bar
107 Manhattan Upper East Side 40.775639 -73.960508 1.0 Italian Restaurant Exhibit Art Gallery Bakery Juice Bar Gym / Fitness Center Coffee Shop Hotel French Restaurant Vegetarian / Vegan Restaurant
108 Manhattan Yorkville 40.775930 -73.947118 1.0 Italian Restaurant Coffee Shop Gym Bar Deli / Bodega Pizza Place Diner Sushi Restaurant Bakery Japanese Restaurant
109 Manhattan Lenox Hill 40.768113 -73.958860 1.0 Coffee Shop Italian Restaurant Pizza Place Cocktail Bar Sporting Goods Shop Sushi Restaurant Gym / Fitness Center Gym Burger Joint Café
110 Manhattan Roosevelt Island 40.762160 -73.949168 1.0 Coffee Shop Park Sandwich Place Japanese Restaurant Deli / Bodega Bridge Bubble Tea Shop Bus Line Soccer Field School
111 Manhattan Upper West Side 40.787658 -73.977059 1.0 Italian Restaurant Wine Bar Bar Coffee Shop Mediterranean Restaurant Bakery Café Pub Indian Restaurant Ice Cream Shop
112 Manhattan Lincoln Square 40.773529 -73.985338 1.0 Plaza Café Concert Hall Italian Restaurant Theater Performing Arts Venue Gym / Fitness Center French Restaurant Park Indie Movie Theater
113 Manhattan Clinton 40.759101 -73.996119 1.0 Theater Italian Restaurant Gym / Fitness Center Coffee Shop Spa American Restaurant Hotel Sandwich Place Gym Wine Shop
114 Manhattan Midtown 40.754691 -73.981669 1.0 Hotel Sporting Goods Shop Clothing Store Theater Food Truck Coffee Shop Spa Steakhouse Japanese Restaurant Bakery
115 Manhattan Murray Hill 40.748303 -73.978332 1.0 Korean Restaurant Coffee Shop Japanese Restaurant Bar Sandwich Place American Restaurant Pub Gym Italian Restaurant Chinese Restaurant
116 Manhattan Chelsea 40.744035 -74.003116 1.0 Italian Restaurant Coffee Shop Bakery Ice Cream Shop Theater American Restaurant Hotel Seafood Restaurant Nightclub Cocktail Bar
117 Manhattan Greenwich Village 40.726933 -73.999914 1.0 Italian Restaurant Clothing Store Sushi Restaurant Indian Restaurant American Restaurant Café French Restaurant Seafood Restaurant Gourmet Shop Chinese Restaurant
118 Manhattan East Village 40.727847 -73.982226 1.0 Bar Wine Bar Ice Cream Shop Mexican Restaurant Chinese Restaurant Cocktail Bar Pizza Place Coffee Shop Vegetarian / Vegan Restaurant Japanese Restaurant
119 Manhattan Lower East Side 40.717807 -73.980890 1.0 Café Pizza Place Chinese Restaurant Japanese Restaurant Cocktail Bar Ramen Restaurant Coffee Shop Bakery Theater Art Gallery
120 Manhattan Tribeca 40.721522 -74.010683 1.0 Italian Restaurant Park American Restaurant Café Spa Greek Restaurant Wine Shop Wine Bar Coffee Shop Men's Store
121 Manhattan Little Italy 40.719324 -73.997305 1.0 Italian Restaurant Bakery Café Bubble Tea Shop Sandwich Place Clothing Store Cocktail Bar Salon / Barbershop Mediterranean Restaurant Women's Store
122 Manhattan Soho 40.722184 -74.000657 1.0 Clothing Store Boutique Women's Store Art Gallery Shoe Store Men's Store Bakery Sporting Goods Shop Italian Restaurant Mediterranean Restaurant
123 Manhattan West Village 40.734434 -74.006180 1.0 Italian Restaurant New American Restaurant Cosmetics Shop American Restaurant Wine Bar Cocktail Bar Park Jazz Club Gastropub Bakery
124 Manhattan Manhattan Valley 40.797307 -73.964286 1.0 Indian Restaurant Coffee Shop Bar Yoga Studio Café Park Mexican Restaurant Pizza Place Peruvian Restaurant Noodle House
125 Manhattan Morningside Heights 40.808000 -73.963896 1.0 Park Coffee Shop American Restaurant Bookstore Burger Joint Sandwich Place Deli / Bodega Pizza Place Food Truck Pharmacy
126 Manhattan Gramercy 40.737210 -73.981376 1.0 Bar Italian Restaurant Bagel Shop Pizza Place Mexican Restaurant Diner Coffee Shop Cocktail Bar Thai Restaurant American Restaurant
127 Manhattan Battery Park City 40.711932 -74.016869 1.0 Park Coffee Shop Hotel Gym Wine Shop Memorial Site BBQ Joint Shopping Mall Plaza Clothing Store
128 Manhattan Financial District 40.707107 -74.010665 1.0 Coffee Shop American Restaurant Pizza Place Gym Food Truck Hotel Bar Steakhouse Café Gym / Fitness Center
129 Queens Astoria 40.768509 -73.915654 1.0 Bar Middle Eastern Restaurant Greek Restaurant Hookah Bar Seafood Restaurant Café Pizza Place Mediterranean Restaurant Bakery Grocery Store
130 Queens Woodside 40.746349 -73.901842 1.0 Grocery Store Thai Restaurant Bakery Latin American Restaurant Filipino Restaurant Deli / Bodega Pizza Place Pub American Restaurant Donut Shop
131 Queens Jackson Heights 40.751981 -73.882821 1.0 Latin American Restaurant South American Restaurant Peruvian Restaurant Bakery Mobile Phone Shop Thai Restaurant Mexican Restaurant Diner Shoe Store Empanada Restaurant
132 Queens Elmhurst 40.744049 -73.881656 1.0 Thai Restaurant Mexican Restaurant South American Restaurant Chinese Restaurant Vietnamese Restaurant Malay Restaurant Pizza Place Seafood Restaurant Food Court Bar
133 Queens Howard Beach 40.654225 -73.838138 1.0 Italian Restaurant Pharmacy Bagel Shop Bank Sandwich Place Fast Food Restaurant Gym Shipping Store Clothing Store Spa
134 Queens Corona 40.742382 -73.856825 1.0 Mexican Restaurant Park Restaurant Bakery South American Restaurant Pizza Place Latin American Restaurant Playground Supermarket Donut Shop
135 Queens Forest Hills 40.725264 -73.844475 1.0 Gym / Fitness Center Gym Yoga Studio Pizza Place Park Thai Restaurant Convenience Store Pharmacy Supplement Shop Farmers Market
136 Queens Kew Gardens 40.705179 -73.829819 1.0 Chinese Restaurant Indian Restaurant Donut Shop Bar Park Bank Pizza Place Cosmetics Shop Convenience Store Spa
137 Queens Richmond Hill 40.697947 -73.831833 1.0 Bank Caribbean Restaurant Lounge Latin American Restaurant Pizza Place Metro Station Pet Service Taco Place Sandwich Place Donut Shop
138 Queens Flushing 40.764454 -73.831773 1.0 Hotpot Restaurant Bubble Tea Shop Chinese Restaurant Korean Restaurant Seafood Restaurant Gym Szechuan Restaurant Bakery Karaoke Bar Asian Restaurant
139 Queens Long Island City 40.750217 -73.939202 1.0 Coffee Shop Hotel Bar Mexican Restaurant Pizza Place Café Gym / Fitness Center Donut Shop Deli / Bodega Chinese Restaurant
140 Queens Sunnyside 40.740176 -73.926916 1.0 Pizza Place Italian Restaurant Coffee Shop Bakery Chinese Restaurant Discount Store Theater Mexican Restaurant Hotel South American Restaurant
141 Queens East Elmhurst 40.764073 -73.867041 1.0 Donut Shop Hotel Bar Gas Station Coffee Shop Lake Ice Cream Shop Supermarket Rental Car Location Exhibit Factory
142 Queens Maspeth 40.725427 -73.896217 1.0 Pizza Place Diner Grocery Store Mobile Phone Shop Bank Park Pharmacy Bakery Lounge Japanese Restaurant
143 Queens Ridgewood 40.708323 -73.901435 1.0 Eastern European Restaurant Mobile Phone Shop Greek Restaurant Pizza Place Playground Grocery Store Bakery Bank Sandwich Place Pet Store
144 Queens Glendale 40.702762 -73.870742 1.0 Arts & Crafts Store Chinese Restaurant Brewery Deli / Bodega Food & Drink Shop Pizza Place Fish & Chips Shop Exhibit Factory Falafel Restaurant
145 Queens Rego Park 40.728974 -73.857827 1.0 Bakery Sandwich Place Donut Shop Bagel Shop Sushi Restaurant Restaurant Grocery Store Pharmacy Pizza Place Japanese Restaurant
146 Queens Woodhaven 40.689887 -73.858110 1.0 Deli / Bodega Bank Pharmacy Japanese Restaurant Hookah Bar Fried Chicken Joint Supermarket Mexican Restaurant Metro Station Thai Restaurant
147 Queens Ozone Park 40.680708 -73.843203 1.0 Pizza Place Pharmacy Bank Diner Gym Event Space Martial Arts Dojo Sandwich Place Fast Food Restaurant Breakfast Spot
148 Queens South Ozone Park 40.668550 -73.809865 1.0 Park Deli / Bodega Fast Food Restaurant Bar Hotel Gym / Fitness Center Home Service Donut Shop Sandwich Place Flower Shop
149 Queens College Point 40.784903 -73.843045 1.0 Deli / Bodega Chinese Restaurant Pizza Place Latin American Restaurant Asian Restaurant Bar Pharmacy Sandwich Place Bakery Steakhouse
150 Queens Whitestone 40.781291 -73.814202 0.0 Bubble Tea Shop Dance Studio Deli / Bodega Candy Store Fish Market Exhibit Factory Falafel Restaurant Farm Farmers Market
151 Queens Bayside 40.766041 -73.774274 1.0 Bar American Restaurant Pizza Place Mexican Restaurant Indian Restaurant Sushi Restaurant Italian Restaurant Bakery Spa Greek Restaurant
152 Queens Auburndale 40.761730 -73.791762 1.0 Pet Store Discount Store Mobile Phone Shop Sushi Restaurant Toy / Game Store Hookah Bar Miscellaneous Shop Athletics & Sports Fast Food Restaurant Korean Restaurant
153 Queens Little Neck 40.770826 -73.738898 1.0 Chinese Restaurant Deli / Bodega Italian Restaurant Korean Restaurant Bank Coffee Shop Bakery Spa Bus Station Pizza Place
154 Queens Douglaston 40.766846 -73.742498 1.0 Bakery Deli / Bodega Bank Donut Shop Convenience Store Liquor Store Lounge Pharmacy Supermarket Korean Restaurant
155 Queens Glen Oaks 40.749441 -73.715481 1.0 Pharmacy Bus Station Bakery Sandwich Place Gift Shop Park Fast Food Restaurant Donut Shop Pizza Place Bagel Shop
156 Queens Bellerose 40.728573 -73.720128 1.0 Pizza Place Italian Restaurant Chinese Restaurant Wine Shop Gas Station Mobile Phone Shop Salon / Barbershop Donut Shop Motel Seafood Restaurant
157 Queens Kew Gardens Hills 40.722578 -73.820878 1.0 Bank Pizza Place Playground Convenience Store Sushi Restaurant Bagel Shop Middle Eastern Restaurant Smoke Shop Restaurant Gift Shop
158 Queens Fresh Meadows 40.734394 -73.782713 1.0 Bus Station Chinese Restaurant Pharmacy Train Grocery Store Pizza Place Playground Food Truck Vegetarian / Vegan Restaurant Cosmetics Shop
159 Queens Briarwood 40.710935 -73.811748 1.0 Playground Fast Food Restaurant Arts & Crafts Store Deli / Bodega Bus Station Mexican Restaurant Gym Coffee Shop Filipino Restaurant Field
160 Queens Jamaica Center 40.704657 -73.796902 1.0 Mobile Phone Shop Sandwich Place Clothing Store Caribbean Restaurant Pizza Place Mexican Restaurant Performing Arts Venue Coffee Shop Fried Chicken Joint Sporting Goods Shop
161 Queens Oakland Gardens 40.745619 -73.754950 1.0 Korean Restaurant Yoga Studio Chinese Restaurant Clothing Store Taiwanese Restaurant Coffee Shop Bank Bakery Bagel Shop Sandwich Place
162 Queens Queens Village 40.718893 -73.738715 1.0 Bank Salon / Barbershop Sandwich Place Donut Shop Fish Market Mexican Restaurant Discount Store Bakery Fried Chicken Joint Martial Arts Dojo
163 Queens Hollis 40.711243 -73.759250 1.0 Baseball Field Park Shopping Mall Sandwich Place Asian Restaurant Fast Food Restaurant Mobile Phone Shop Grocery Store Chinese Restaurant Electronics Store
164 Queens South Jamaica 40.696911 -73.790426 1.0 Bus Station Bakery Supermarket Bus Line Caribbean Restaurant Grocery Store Women's Store Financial or Legal Service Factory Falafel Restaurant
165 Queens St. Albans 40.694445 -73.758676 1.0 Caribbean Restaurant Fast Food Restaurant Chinese Restaurant Discount Store Motorcycle Shop Donut Shop Café Grocery Store Market Convenience Store
166 Queens Rochdale 40.675211 -73.772588 1.0 Market Southern / Soul Food Restaurant Bus Station Bus Stop Laundromat Liquor Store Donut Shop Pizza Place Pharmacy Pet Store
167 Queens Springfield Gardens 40.666230 -73.760421 1.0 Fried Chicken Joint Donut Shop Bus Station Shoe Store Chinese Restaurant Park Gym Check Cashing Service Liquor Store Fast Food Restaurant
168 Queens Cambria Heights 40.692775 -73.735269 1.0 Caribbean Restaurant Nightclub Moving Target Chinese Restaurant Pharmacy Gym / Fitness Center Restaurant Cosmetics Shop Flower Shop Liquor Store
169 Queens Rosedale 40.659816 -73.735261 1.0 Bus Station Baseball Field Sandwich Place Supermarket Caribbean Restaurant Smoke Shop Chinese Restaurant Pharmacy Liquor Store Fried Chicken Joint
170 Queens Far Rockaway 40.603134 -73.754980 1.0 Pizza Place Deli / Bodega Grocery Store Chinese Restaurant Fried Chicken Joint Pharmacy Bus Station Bank Fast Food Restaurant Metro Station
171 Queens Broad Channel 40.603027 -73.820055 1.0 Dive Bar Deli / Bodega Sporting Goods Shop Other Nightlife Pizza Place Financial or Legal Service Event Space Exhibit Factory Falafel Restaurant
172 Queens Breezy Point 40.557401 -73.925512 1.0 Supermarket Trail Beach Bus Stop Monument / Landmark Women's Store Financial or Legal Service Exhibit Factory Falafel Restaurant
173 Queens Steinway 40.775923 -73.902290 1.0 Rental Car Location Women's Store Sushi Restaurant Pizza Place Men's Store Italian Restaurant Irish Pub Gym / Fitness Center Donut Shop Dessert Shop
174 Queens Beechhurst 40.792781 -73.804365 1.0 Chinese Restaurant Yoga Studio Donut Shop Optical Shop Supermarket Boutique Gym Gym / Fitness Center Pizza Place Health & Beauty Service
175 Queens Bay Terrace 40.782843 -73.776802 1.0 Clothing Store Donut Shop Supermarket Italian Restaurant American Restaurant Kids Store Mobile Phone Shop Cosmetics Shop Women's Store Lingerie Store
176 Queens Edgemere 40.595642 -73.776133 1.0 Pizza Place Metro Station Gift Shop Farm Bus Station Asian Restaurant Deli / Bodega Park Seafood Restaurant Skate Park
177 Queens Arverne 40.589144 -73.791992 1.0 Surf Spot Sandwich Place Metro Station Donut Shop Board Shop Pizza Place Coffee Shop Playground Beach Bus Stop
178 Queens Rockaway Beach 40.582802 -73.822361 1.0 Beach Bagel Shop BBQ Joint Ice Cream Shop Pizza Place Food Truck Arepa Restaurant Latin American Restaurant Fast Food Restaurant Poke Place
179 Queens Neponsit 40.572037 -73.857547 2.0 Beach Women's Store Fish & Chips Shop Event Space Exhibit Factory Falafel Restaurant Farm Farmers Market Fast Food Restaurant
180 Queens Murray Hill 40.764126 -73.812763 1.0 Korean Restaurant Coffee Shop Japanese Restaurant Bar Sandwich Place American Restaurant Pub Gym Italian Restaurant Chinese Restaurant
181 Queens Floral Park 40.741378 -73.708847 1.0 Indian Restaurant Basketball Court Salon / Barbershop Dosa Place Pizza Place Grocery Store Event Service Event Space Exhibit Factory
182 Queens Holliswood 40.720957 -73.767142 1.0 Supermarket Mobile Phone Shop Donut Shop Playground Women's Store Filipino Restaurant Event Space Exhibit Factory Falafel Restaurant
183 Queens Jamaica Estates 40.716805 -73.787227 1.0 Intersection Bus Station Indian Restaurant Women's Store Financial or Legal Service Event Service Event Space Exhibit Factory Falafel Restaurant
184 Queens Queensboro Hill 40.744572 -73.825809 1.0 Chinese Restaurant Bank Bakery Intersection Supermarket Shanghai Restaurant Bus Station Bar Bagel Shop Liquor Store
185 Queens Hillcrest 40.723825 -73.797603 1.0 Grocery Store Donut Shop Italian Restaurant Pizza Place Food Court Fast Food Restaurant Snack Place Mobile Phone Shop Market Coffee Shop
186 Queens Ravenswood 40.761705 -73.931575 1.0 Chinese Restaurant Grocery Store Japanese Restaurant Latin American Restaurant Food Truck Food & Drink Shop Ramen Restaurant Brazilian Restaurant Sushi Restaurant Taco Place
187 Queens Lindenwood 40.663918 -73.849638 1.0 Japanese Restaurant Hotel Chinese Restaurant Bank Bakery Gym Liquor Store Pizza Place Donut Shop Playground
188 Queens Laurelton 40.667884 -73.740256 1.0 Cosmetics Shop Caribbean Restaurant Train Station Women's Store Filipino Restaurant Event Service Event Space Exhibit Factory Falafel Restaurant
189 Queens Lefrak City 40.736075 -73.862525 1.0 Bakery Cosmetics Shop Department Store Fruit & Vegetable Store Mexican Restaurant Sandwich Place BBQ Joint Bank Liquor Store Shopping Mall
190 Queens Belle Harbor 40.576156 -73.854018 1.0 Beach Deli / Bodega Pub Spa Bakery Pharmacy Italian Restaurant Chinese Restaurant Mexican Restaurant Donut Shop
191 Queens Rockaway Park 40.580343 -73.841534 1.0 Beach Pizza Place Donut Shop Bank Yoga Studio Automotive Shop Deli / Bodega Diner Sandwich Place Pharmacy
192 Queens Somerville 40.597711 -73.796648 3.0 Park Women's Store English Restaurant Event Service Event Space Exhibit Factory Falafel Restaurant Farm Farmers Market
193 Queens Brookville 40.660003 -73.751753 0.0 Deli / Bodega Women's Store Fish & Chips Shop Event Service Event Space Exhibit Factory Falafel Restaurant Farm Farmers Market
194 Queens Bellaire 40.733014 -73.738892 1.0 Chinese Restaurant Convenience Store Halal Restaurant Gym Coffee Shop Greek Restaurant Moving Target Diner Italian Restaurant Bus Station
195 Queens North Corona 40.754071 -73.857518 1.0 Deli / Bodega Spanish Restaurant Gym / Fitness Center Pizza Place Bakery Hotel Caribbean Restaurant Mobile Phone Shop Gym Mexican Restaurant
196 Queens Forest Hills Gardens 40.714611 -73.841022 1.0 Bakery Food & Drink Shop Playground Tapas Restaurant Bagel Shop Mexican Restaurant Pharmacy Sandwich Place Donut Shop Grocery Store
197 Staten Island St. George 40.644982 -74.079353 1.0 Clothing Store Italian Restaurant American Restaurant Sporting Goods Shop Bar Snack Place Monument / Landmark Coffee Shop Tourist Information Center Toy / Game Store
198 Staten Island New Brighton 40.640615 -74.087017 0.0 Bus Stop Deli / Bodega Park Bowling Alley Discount Store Playground Women's Store Fish & Chips Shop Factory Falafel Restaurant
199 Staten Island Stapleton 40.626928 -74.077902 1.0 Pizza Place Mexican Restaurant Sandwich Place Café Discount Store Bank Restaurant Donut Shop Motorcycle Shop Beer Bar
200 Staten Island Rosebank 40.615305 -74.069805 1.0 Grocery Store Italian Restaurant Pharmacy Discount Store Mexican Restaurant Beach Bar Bagel Shop Sandwich Place Filipino Restaurant
201 Staten Island West Brighton 40.631879 -74.107182 1.0 Coffee Shop Deli / Bodega Pharmacy Music Store Bank Bar Italian Restaurant Piercing Parlor Breakfast Spot Liquor Store
202 Staten Island Grymes Hill 40.624185 -74.087248 0.0 Bus Stop Dog Run Women's Store Fish & Chips Shop Event Space Exhibit Factory Falafel Restaurant Farm Farmers Market
203 Staten Island Todt Hill 40.597069 -74.111329 3.0 Park Women's Store English Restaurant Event Service Event Space Exhibit Factory Falafel Restaurant Farm Farmers Market
204 Staten Island South Beach 40.580247 -74.079553 0.0 Beach Pier Deli / Bodega Bus Stop Athletics & Sports Women's Store Financial or Legal Service Exhibit Factory Falafel Restaurant
205 Staten Island Port Richmond 40.633669 -74.129434 1.0 Rental Car Location Basketball Court Food Donut Shop Financial or Legal Service Event Space Exhibit Factory Falafel Restaurant Farm
206 Staten Island Mariner's Harbor 40.632546 -74.150085 0.0 Italian Restaurant Deli / Bodega Bus Stop Athletics & Sports Women's Store Fish & Chips Shop Event Space Exhibit Factory Falafel Restaurant
207 Staten Island Port Ivory 40.639683 -74.174645 4.0 Bar Fish & Chips Shop Event Service Event Space Exhibit Factory Falafel Restaurant Farm Farmers Market Fast Food Restaurant
208 Staten Island Castleton Corners 40.613336 -74.119181 1.0 Pizza Place Ice Cream Shop Sandwich Place Tattoo Parlor Mini Golf Grocery Store Bagel Shop Japanese Restaurant Indian Restaurant Bank
209 Staten Island New Springville 40.594252 -74.164960 1.0 Coffee Shop Health & Beauty Service Pizza Place Chinese Restaurant Deli / Bodega Mexican Restaurant Spa Ice Cream Shop Donut Shop Restaurant
210 Staten Island Travis 40.586314 -74.190737 1.0 Hotel Bowling Alley Deli / Bodega Park Gym / Fitness Center Gym Home Service Donut Shop Comedy Club Café
211 Staten Island New Dorp 40.572572 -74.116479 1.0 Pizza Place Italian Restaurant Coffee Shop Chinese Restaurant Mexican Restaurant Taco Place Sandwich Place Bank Bakery Bagel Shop
212 Staten Island Oakwood 40.558462 -74.121566 4.0 Bar Playground Bus Station Lawyer Event Service Event Space Exhibit Factory Falafel Restaurant Farm
213 Staten Island Great Kills 40.549480 -74.149324 1.0 Bar Pizza Place Italian Restaurant Japanese Restaurant Grocery Store Pharmacy Liquor Store Mexican Restaurant Bakery Bank
214 Staten Island Eltingville 40.542231 -74.164331 1.0 Pizza Place Sushi Restaurant Diner Fast Food Restaurant Pharmacy Bank Italian Restaurant Gourmet Shop Gastropub Bakery
215 Staten Island Annadale 40.538114 -74.178549 1.0 Pizza Place Bakery Park Diner Pub Train Station American Restaurant Restaurant Sports Bar Sushi Restaurant
216 Staten Island Woodrow 40.541968 -74.205246 1.0 Pharmacy Coffee Shop Cosmetics Shop Bagel Shop Sushi Restaurant Bakery Bank Pizza Place Donut Shop Miscellaneous Shop
217 Staten Island Tottenville 40.505334 -74.246569 1.0 Thrift / Vintage Store Deli / Bodega Home Service Miscellaneous Shop Bus Stop Mexican Restaurant Cosmetics Shop Italian Restaurant Factory Filipino Restaurant
218 Staten Island Tompkinsville 40.637316 -74.080554 1.0 Thrift / Vintage Store Café Brewery Park Pizza Place Rock Club Supermarket Caribbean Restaurant Gastropub Mexican Restaurant
219 Staten Island Silver Lake 40.619193 -74.096290 1.0 Burger Joint American Restaurant Golf Course Women's Store Fish & Chips Shop Event Space Exhibit Factory Falafel Restaurant Farm
220 Staten Island Sunnyside 40.612760 -74.097126 1.0 Pizza Place Italian Restaurant Coffee Shop Bakery Chinese Restaurant Discount Store Theater Mexican Restaurant Hotel South American Restaurant
221 Brooklyn Ditmas Park 40.643675 -73.961013 1.0 Women's Store Pizza Place Donut Shop Caribbean Restaurant Pharmacy Chinese Restaurant Burger Joint Ramen Restaurant Salon / Barbershop Sandwich Place
222 Brooklyn Wingate 40.660947 -73.937187 1.0 Fast Food Restaurant Pharmacy Discount Store Bus Station Flower Shop Fish & Chips Shop Field Gym / Fitness Center Hardware Store Nightclub
223 Brooklyn Rugby 40.655572 -73.926882 1.0 Grocery Store Bank Caribbean Restaurant Supermarket Fried Chicken Joint Pizza Place Pharmacy Seafood Restaurant Mobile Phone Shop Sandwich Place
224 Staten Island Park Hill 40.609190 -74.080157 0.0 Bus Stop Athletics & Sports Coffee Shop Gym / Fitness Center Hotel Women's Store Filipino Restaurant Event Space Exhibit Factory
225 Staten Island Westerleigh 40.621090 -74.133041 1.0 Convenience Store Arcade Women's Store Fish & Chips Shop Event Service Event Space Exhibit Factory Falafel Restaurant Farm
226 Staten Island Graniteville 40.620172 -74.153152 1.0 Supermarket Food Truck Boat or Ferry Women's Store Fish & Chips Shop Event Space Exhibit Factory Falafel Restaurant Farm
227 Staten Island Arlington 40.635325 -74.165104 0.0 Deli / Bodega Grocery Store Scenic Lookout Playground Women's Store Field Event Service Event Space Exhibit Factory
228 Staten Island Arrochar 40.596313 -74.067124 1.0 Italian Restaurant Deli / Bodega Bus Stop Food Truck Supermarket Middle Eastern Restaurant Liquor Store Outdoors & Recreation Bagel Shop Sandwich Place
229 Staten Island Grasmere 40.598268 -74.076674 1.0 Bus Stop Grocery Store Bank Bakery Japanese Restaurant Vegetarian / Vegan Restaurant Ice Cream Shop Nail Salon Park Pharmacy
230 Staten Island Old Town 40.596329 -74.087511 1.0 Italian Restaurant Pharmacy Restaurant Donut Shop Pizza Place Middle Eastern Restaurant Mattress Store Bakery Grocery Store Liquor Store
231 Staten Island Dongan Hills 40.588673 -74.096399 1.0 Pharmacy Italian Restaurant Deli / Bodega Bagel Shop Pizza Place Convenience Store Train Station Fast Food Restaurant Sushi Restaurant Bank
232 Staten Island Midland Beach 40.573527 -74.093483 1.0 Beach Deli / Bodega Basketball Court Bookstore Baseball Field Bus Stop Dessert Shop Restaurant Chinese Restaurant Pet Store
233 Staten Island Grant City 40.576216 -74.105856 1.0 Pizza Place Bus Stop Convenience Store Health & Beauty Service Mexican Restaurant Pharmacy Bar Event Space Grocery Store Fast Food Restaurant
234 Staten Island New Dorp Beach 40.564255 -74.104327 1.0 Italian Restaurant Deli / Bodega Women's Store Restaurant Skating Rink Diner Food Scenic Lookout Sports Bar Beach
235 Staten Island Bay Terrace 40.553988 -74.139166 1.0 Clothing Store Donut Shop Supermarket Italian Restaurant American Restaurant Kids Store Mobile Phone Shop Cosmetics Shop Women's Store Lingerie Store
236 Staten Island Huguenot 40.531912 -74.191741 1.0 Bank Italian Restaurant Donut Shop Ice Cream Shop Sandwich Place Asian Restaurant Deli / Bodega Bridal Shop Factory Exhibit
237 Staten Island Pleasant Plains 40.524699 -74.219831 1.0 Donut Shop Pizza Place Rental Car Location Discount Store Bus Stop Food Fast Food Restaurant Bank Dry Cleaner Liquor Store
238 Staten Island Butler Manor 40.506082 -74.229504 1.0 Baseball Field Pool Convenience Store Bus Stop Financial or Legal Service Event Service Event Space Exhibit Factory Falafel Restaurant
239 Staten Island Charleston 40.530531 -74.232158 1.0 Big Box Store Cosmetics Shop Women's Store Furniture / Home Store Sporting Goods Shop Shoe Store Pizza Place Pet Store Music Venue Mobile Phone Shop
240 Staten Island Rossville 40.549404 -74.215729 1.0 Pizza Place Bagel Shop Convenience Store Moving Target Chinese Restaurant Deli / Bodega Dry Cleaner Liquor Store American Restaurant Grocery Store
241 Staten Island Arden Heights 40.549286 -74.185887 0.0 Pharmacy Deli / Bodega Bus Stop Coffee Shop Pizza Place Women's Store Filipino Restaurant Event Space Exhibit Factory
242 Staten Island Greenridge 40.555295 -74.170794 1.0 Lawyer Bagel Shop Construction & Landscaping Diner Pizza Place Women's Store Event Space Exhibit Factory Falafel Restaurant
243 Staten Island Heartland Village 40.589139 -74.159022 1.0 Coffee Shop Donut Shop Spa Accessories Store Food Truck Health & Beauty Service Pharmacy Restaurant Pizza Place Farmers Market
244 Staten Island Chelsea 40.594726 -74.189560 1.0 Italian Restaurant Coffee Shop Bakery Ice Cream Shop Theater American Restaurant Hotel Seafood Restaurant Nightclub Cocktail Bar
245 Staten Island Bloomfield 40.605779 -74.187256 1.0 Recreation Center Park Theme Park Bus Stop Discount Store Filipino Restaurant Event Space Exhibit Factory Falafel Restaurant
246 Staten Island Bulls Head 40.609592 -74.159409 1.0 Bus Stop Pizza Place Pharmacy Deli / Bodega Chinese Restaurant Thai Restaurant Baseball Field Liquor Store Coffee Shop Sandwich Place
247 Manhattan Carnegie Hill 40.782683 -73.953256 1.0 Coffee Shop Pizza Place Café Cosmetics Shop Japanese Restaurant Bakery Bar Bookstore French Restaurant Grocery Store
248 Manhattan Noho 40.723259 -73.988434 1.0 Italian Restaurant French Restaurant Cocktail Bar Pizza Place Coffee Shop Grocery Store Mexican Restaurant Art Gallery Rock Club Boutique
249 Manhattan Civic Center 40.715229 -74.005415 1.0 Gym / Fitness Center Italian Restaurant Hotel French Restaurant Coffee Shop Yoga Studio Spa Bakery American Restaurant Park
250 Manhattan Midtown South 40.748510 -73.988713 1.0 Korean Restaurant Hotel Japanese Restaurant Dessert Shop Hotel Bar American Restaurant Cocktail Bar Coffee Shop Cosmetics Shop Salad Place
251 Staten Island Richmond Town 40.569606 -74.134057 1.0 Italian Restaurant Bagel Shop History Museum Spa Café Financial or Legal Service Event Space Exhibit Factory Falafel Restaurant
252 Staten Island Shore Acres 40.609719 -74.066678 1.0 Italian Restaurant Deli / Bodega Bus Stop Intersection Bar Bagel Shop Gastropub Furniture / Home Store Music Store Nail Salon
253 Staten Island Clifton 40.619178 -74.072642 1.0 Grocery Store Mexican Restaurant Pizza Place Train Station Intersection Taco Place Storage Facility American Restaurant Museum Bus Stop
254 Staten Island Concord 40.604473 -74.084024 1.0 Athletics & Sports Chinese Restaurant Deli / Bodega Supermarket Bagel Shop Park Coffee Shop Gym / Fitness Center Peruvian Restaurant Women's Store
256 Staten Island Randall Manor 40.635630 -74.098051 0.0 Bus Stop Bagel Shop Deli / Bodega Park Women's Store Financial or Legal Service Event Space Exhibit Factory Falafel Restaurant
258 Staten Island Elm Park 40.630147 -74.141817 0.0 Bus Stop Deli / Bodega Italian Restaurant Pizza Place Cosmetics Shop American Restaurant Ice Cream Shop Field Fast Food Restaurant Farmers Market
259 Brooklyn Remsen Village 40.652117 -73.916653 1.0 Caribbean Restaurant Fast Food Restaurant Fried Chicken Joint Construction & Landscaping Coffee Shop Sandwich Place Salad Place Donut Shop Café Fish Market
260 Brooklyn New Lots 40.662744 -73.885118 1.0 Pizza Place Fast Food Restaurant Grocery Store Furniture / Home Store Bus Station Breakfast Spot Chinese Restaurant Metro Station Park Bank
261 Brooklyn Paerdegat Basin 40.631318 -73.902335 1.0 Harbor / Marina Food Asian Restaurant Women's Store Financial or Legal Service Event Space Exhibit Factory Falafel Restaurant Farm
262 Brooklyn Mill Basin 40.615974 -73.915154 1.0 Chinese Restaurant Japanese Restaurant Pizza Place Bagel Shop Cosmetics Shop Bank Sushi Restaurant Pet Store Bakery Liquor Store
263 Queens Jamaica Hills 40.711460 -73.796465 1.0 Pharmacy Donut Shop Fast Food Restaurant Fried Chicken Joint Indian Restaurant Chinese Restaurant Halal Restaurant Thai Restaurant Pet Store Coffee Shop
264 Queens Utopia 40.733500 -73.796717 1.0 Deli / Bodega Spa Ice Cream Shop Donut Shop Pizza Place Playground South American Restaurant Bakery Automotive Shop History Museum
265 Queens Pomonok 40.734936 -73.804861 1.0 Japanese Restaurant Playground Bus Station Supermarket Food & Drink Shop Bowling Alley Park Scenic Lookout Pizza Place Bar
266 Queens Astoria Heights 40.770317 -73.894680 1.0 Italian Restaurant Plaza Bus Station Supermarket Bowling Alley Chinese Restaurant Shopping Mall Bakery Hostel Pizza Place
267 Bronx Claremont Village 40.831428 -73.901199 1.0 Chinese Restaurant Grocery Store Pizza Place Bus Station Deli / Bodega Discount Store Caribbean Restaurant Liquor Store Bakery Gym
268 Bronx Concourse Village 40.824780 -73.915847 1.0 Fast Food Restaurant Sandwich Place Sporting Goods Shop Mexican Restaurant Bus Station Deli / Bodega Pharmacy Southern / Soul Food Restaurant Supermarket Supplement Shop
269 Bronx Mount Eden 40.843826 -73.916556 1.0 Supermarket Spanish Restaurant Pharmacy Pizza Place Deli / Bodega Fried Chicken Joint Fast Food Restaurant Chinese Restaurant Clothing Store Bar
270 Bronx Mount Hope 40.848842 -73.908299 1.0 Grocery Store Sandwich Place Asian Restaurant Donut Shop Metro Station Deli / Bodega Supermarket Ice Cream Shop Spanish Restaurant Video Game Store
271 Manhattan Sutton Place 40.760280 -73.963556 1.0 Gym / Fitness Center Italian Restaurant Furniture / Home Store Coffee Shop Indian Restaurant American Restaurant Gym Beer Garden Cupcake Shop Bakery
272 Queens Hunters Point 40.743414 -73.953868 1.0 Italian Restaurant Café Japanese Restaurant Brewery Thai Restaurant Deli / Bodega Gym / Fitness Center Burger Joint Coffee Shop American Restaurant
273 Manhattan Turtle Bay 40.752042 -73.967708 1.0 Italian Restaurant Steakhouse Sushi Restaurant Coffee Shop Wine Bar Japanese Restaurant Indian Restaurant Ramen Restaurant Park French Restaurant
274 Manhattan Tudor City 40.746917 -73.971219 1.0 Café Mexican Restaurant Park Pizza Place Greek Restaurant Deli / Bodega Restaurant Thai Restaurant Gym Diner
275 Manhattan Stuyvesant Town 40.731000 -73.974052 1.0 Boat or Ferry Park Bar Baseball Field Cocktail Bar Harbor / Marina Gym / Fitness Center Playground German Restaurant Coffee Shop
276 Manhattan Flatiron 40.739673 -73.990947 1.0 Japanese Restaurant Spa American Restaurant Café Clothing Store Gym / Fitness Center New American Restaurant Yoga Studio Cycle Studio Salon / Barbershop
277 Queens Sunnyside Gardens 40.745652 -73.918193 1.0 Bar Grocery Store Pizza Place Korean Restaurant American Restaurant Coffee Shop Bank Turkish Restaurant Thai Restaurant Pharmacy
278 Queens Blissville 40.737251 -73.932442 1.0 Deli / Bodega Donut Shop Hotel Rental Service Art Gallery Sporting Goods Shop Cafeteria Movie Theater Skating Rink Mattress Store
279 Brooklyn Fulton Ferry 40.703281 -73.995508 1.0 Park American Restaurant Scenic Lookout Bakery Playground Pizza Place Café Coffee Shop Ice Cream Shop Burger Joint
280 Brooklyn Vinegar Hill 40.703321 -73.981116 1.0 Food Truck Art Gallery Wine Shop Coffee Shop Café Music Venue Factory Scenic Lookout Bike Rental / Bike Share Bar
281 Brooklyn Weeksville 40.675040 -73.930531 1.0 Discount Store Café Grocery Store Liquor Store Donut Shop Lounge Plaza Gas Station Cocktail Bar Juice Bar
282 Brooklyn Broadway Junction 40.677861 -73.903317 1.0 Fried Chicken Joint Donut Shop Diner Gas Station Pizza Place Sandwich Place Caribbean Restaurant Discount Store Ice Cream Shop Bus Stop
283 Brooklyn Dumbo 40.703176 -73.988753 1.0 Coffee Shop Café Park Scenic Lookout Bakery Japanese Restaurant American Restaurant Art Gallery Bookstore Boxing Gym
284 Staten Island Manor Heights 40.601810 -74.120594 1.0 Donut Shop Deli / Bodega American Restaurant Campground Liquor Store Food Sushi Restaurant Chinese Restaurant Pharmacy Filipino Restaurant
285 Staten Island Willowbrook 40.603707 -74.132084 0.0 Bus Stop Intersection Bagel Shop Deli / Bodega Spa Pizza Place Women's Store Filipino Restaurant Event Space Exhibit
286 Staten Island Sandy Ground 40.541140 -74.217766 1.0 Bus Stop Fish & Chips Shop Racetrack Greek Restaurant Art Gallery Market Playground Food Truck Intersection Exhibit
287 Staten Island Egbertville 40.579119 -74.127272 1.0 Clothing Store Italian Restaurant Bagel Shop Cosmetics Shop Construction & Landscaping Financial or Legal Service Event Service Event Space Exhibit Factory
288 Queens Roxbury 40.567376 -73.892138 1.0 Irish Pub Beach Deli / Bodega Trail Fast Food Restaurant Baseball Field Women's Store Financial or Legal Service Event Space Exhibit
289 Brooklyn Homecrest 40.598525 -73.959185 1.0 Bank Donut Shop Sandwich Place Grocery Store Chinese Restaurant Pizza Place Mexican Restaurant Fast Food Restaurant Sushi Restaurant Tattoo Parlor
290 Queens Middle Village 40.716415 -73.881143 1.0 Japanese Restaurant Diner Martial Arts Dojo Bank Bakery Sandwich Place South American Restaurant Pizza Place Playground Discount Store
291 Staten Island Prince's Bay 40.526264 -74.201526 1.0 Pizza Place Italian Restaurant Sushi Restaurant Bank Pet Store Bagel Shop Pharmacy Ice Cream Shop Tanning Salon Food Truck
292 Staten Island Lighthouse Hill 40.576506 -74.137927 1.0 Italian Restaurant Trail Spa Café Art Museum Financial or Legal Service Event Space Exhibit Factory Falafel Restaurant
293 Staten Island Richmond Valley 40.519541 -74.229571 1.0 Bank Fast Food Restaurant Sandwich Place Food Mexican Restaurant Coffee Shop Train Station Bubble Tea Shop Deli / Bodega Convenience Store
294 Queens Malba 40.790602 -73.826678 1.0 Rest Area Tennis Court Women's Store Financial or Legal Service Event Service Event Space Exhibit Factory Falafel Restaurant Farm
295 Brooklyn Highland Park 40.681999 -73.890346 1.0 Spanish Restaurant Pizza Place Liquor Store Garden Latin American Restaurant Park Fried Chicken Joint Gym / Fitness Center Cosmetics Shop Food
296 Brooklyn Madison 40.609378 -73.948415 1.0 Bagel Shop Pilates Studio Italian Restaurant Pizza Place Deli / Bodega Bus Station Restaurant Candy Store Dessert Shop Hobby Shop
297 Bronx Bronxdale 40.852723 -73.861726 1.0 Italian Restaurant Spanish Restaurant Chinese Restaurant Bank Paper / Office Supplies Store Gym Mexican Restaurant Eastern European Restaurant Pizza Place Performing Arts Venue
298 Bronx Allerton 40.865788 -73.859319 1.0 Pizza Place Supermarket Chinese Restaurant Deli / Bodega Bus Station Spanish Restaurant Breakfast Spot Martial Arts Dojo Fast Food Restaurant Pharmacy
299 Bronx Kingsbridge Heights 40.870392 -73.901523 1.0 Pizza Place Coffee Shop Deli / Bodega Food Truck Fried Chicken Joint Mexican Restaurant Park High School Sandwich Place Baseball Field
300 Brooklyn Erasmus 40.646926 -73.948177 1.0 Caribbean Restaurant Yoga Studio Furniture / Home Store Grocery Store Chinese Restaurant Mobile Phone Shop Pharmacy Bank Health Food Store School
301 Manhattan Hudson Yards 40.756658 -74.000111 1.0 American Restaurant Hotel Italian Restaurant Café Gym / Fitness Center Thai Restaurant Dog Run Boat or Ferry Park Spanish Restaurant
302 Queens Hammels 40.587338 -73.805530 1.0 Beach Southern / Soul Food Restaurant Shoe Store Gym / Fitness Center Dog Run Fast Food Restaurant Café Diner Bus Stop Bus Station
303 Queens Bayswater 40.611322 -73.765968 3.0 Park Playground Women's Store Filipino Restaurant Event Service Event Space Exhibit Factory Falafel Restaurant Farm
304 Queens Queensbridge 40.756091 -73.945631 1.0 Hotel Baseball Field Hotel Bar Performing Arts Venue Basketball Court Beer Garden Park Scenic Lookout Sandwich Place Roof Deck
305 Staten Island Fox Hills 40.617311 -74.081740 0.0 Bus Stop Playground Bus Station Sandwich Place Bar Deli / Bodega Food Truck Financial or Legal Service Event Space Exhibit
In [95]:
newyork_merged['Cluster Labels'] = newyork_merged['Cluster Labels'].astype(int)
newyork_merged
Out[95]:
Borough Neighborhood Latitude Longitude Cluster Labels 1st Most Common Venue 2nd Most Common Venue 3rd Most Common Venue 4th Most Common Venue 5th Most Common Venue 6th Most Common Venue 7th Most Common Venue 8th Most Common Venue 9th Most Common Venue 10th Most Common Venue
0 Bronx Wakefield 40.894705 -73.847201 1 Dessert Shop Pharmacy Donut Shop Laundromat Gas Station Sandwich Place Ice Cream Shop Caribbean Restaurant Farm Fast Food Restaurant
1 Bronx Co-op City 40.874294 -73.829939 1 Bus Station Baseball Field Discount Store Chinese Restaurant Park Pharmacy Bagel Shop Grocery Store Fast Food Restaurant Gift Shop
2 Bronx Eastchester 40.887556 -73.827806 1 Caribbean Restaurant Deli / Bodega Bus Station Diner Bowling Alley Metro Station Chinese Restaurant Bakery Fast Food Restaurant Seafood Restaurant
3 Bronx Fieldston 40.895437 -73.905643 1 Plaza River Bus Station Women's Store Event Service Event Space Exhibit Factory Falafel Restaurant Farm
4 Bronx Riverdale 40.890834 -73.912585 1 Park Bus Station Playground Plaza Bank Gym Home Service Baseball Field Food Truck Flower Shop
5 Bronx Kingsbridge 40.881687 -73.902818 1 Pizza Place Bakery Bar Latin American Restaurant Mexican Restaurant Sandwich Place Supermarket Fried Chicken Joint Spanish Restaurant Donut Shop
6 Manhattan Marble Hill 40.876551 -73.910660 1 Sandwich Place Coffee Shop Yoga Studio Kids Store Big Box Store Shopping Mall Gym Miscellaneous Shop Seafood Restaurant Clothing Store
7 Bronx Woodlawn 40.898273 -73.867315 1 Deli / Bodega Pizza Place Playground Rental Car Location Plaza Supermarket Park Food Truck Bakery Pharmacy
8 Bronx Norwood 40.877224 -73.879391 1 Park Pizza Place Bank Deli / Bodega American Restaurant Pharmacy Mexican Restaurant Coffee Shop Pet Store Sandwich Place
9 Bronx Williamsbridge 40.881039 -73.857446 1 Nightclub Caribbean Restaurant Soup Place Bar Financial or Legal Service Event Space Exhibit Factory Falafel Restaurant Farm
10 Bronx Baychester 40.866858 -73.835798 1 Donut Shop Gym / Fitness Center Discount Store Sandwich Place Bank Fast Food Restaurant Electronics Store Bus Station Pizza Place Supermarket
11 Bronx Pelham Parkway 40.857413 -73.854756 1 Frozen Yogurt Shop Pizza Place Italian Restaurant Bus Station Chinese Restaurant Performing Arts Venue Metro Station Coffee Shop Bank Bakery
12 Bronx City Island 40.847247 -73.786488 1 Harbor / Marina Seafood Restaurant Thrift / Vintage Store French Restaurant Art Gallery Baseball Field Bar Bank Boat or Ferry Smoke Shop
13 Bronx Bedford Park 40.870185 -73.885512 1 Pizza Place Diner Deli / Bodega Supermarket Mexican Restaurant Chinese Restaurant Sandwich Place Coffee Shop Bakery Bar
14 Bronx University Heights 40.855727 -73.910416 1 Pizza Place Bus Station Sandwich Place Fast Food Restaurant Donut Shop Bakery Latin American Restaurant Bank Pharmacy Supermarket
15 Bronx Morris Heights 40.847898 -73.919672 1 IT Services Recreation Center Bus Station Bank Pharmacy Latin American Restaurant Pizza Place Spanish Restaurant Grocery Store Falafel Restaurant
16 Bronx Fordham 40.860997 -73.896427 1 Mobile Phone Shop Fast Food Restaurant Shoe Store Gym / Fitness Center Spanish Restaurant Bank Donut Shop Pharmacy Supplement Shop Pizza Place
17 Bronx East Tremont 40.842696 -73.887356 1 Pizza Place Shoe Store Cosmetics Shop Spanish Restaurant Discount Store Fast Food Restaurant Donut Shop Lounge Café Bank
18 Bronx West Farms 40.839475 -73.877745 1 Bus Station Donut Shop Metro Station Sandwich Place Scenic Lookout Latin American Restaurant Lounge Bank Playground Coffee Shop
19 Bronx High Bridge 40.836623 -73.926102 1 Pharmacy Supermarket Pizza Place Chinese Restaurant Bus Station Deli / Bodega Seafood Restaurant Sandwich Place Market Asian Restaurant
20 Bronx Melrose 40.819754 -73.909422 1 Pharmacy Pizza Place Sandwich Place Gym / Fitness Center Supermarket Martial Arts Dojo Supplement Shop Chinese Restaurant Mexican Restaurant Paper / Office Supplies Store
21 Bronx Mott Haven 40.806239 -73.916100 1 Spanish Restaurant Gym Donut Shop Pizza Place Storage Facility Latin American Restaurant Fish & Chips Shop Mobile Phone Shop Grocery Store Peruvian Restaurant
22 Bronx Port Morris 40.801664 -73.913221 1 Storage Facility Distillery Cupcake Shop Music Venue Brewery Furniture / Home Store Spanish Restaurant Grocery Store Paper / Office Supplies Store Donut Shop
23 Bronx Longwood 40.815099 -73.895788 1 Sandwich Place Fast Food Restaurant Grocery Store Donut Shop Diner Latin American Restaurant Women's Store Event Space Exhibit Factory
24 Bronx Hunts Point 40.809730 -73.883315 1 Restaurant Spanish Restaurant Farmers Market Grocery Store BBQ Joint Café Gourmet Shop Pizza Place Waste Facility Juice Bar
25 Bronx Morrisania 40.823592 -73.901506 1 Discount Store Bus Station Fast Food Restaurant Chinese Restaurant Donut Shop Pharmacy Latin American Restaurant Seafood Restaurant Bowling Alley Fish Market
26 Bronx Soundview 40.821012 -73.865746 1 Chinese Restaurant Grocery Store Fried Chicken Joint Video Store Health & Beauty Service Burger Joint Pharmacy Latin American Restaurant Playground Basketball Court
27 Bronx Clason Point 40.806551 -73.854144 3 Park Bus Stop Moving Target Pool Grocery Store Boat or Ferry South American Restaurant Women's Store Financial or Legal Service Factory
28 Bronx Throgs Neck 40.815109 -73.816350 1 Deli / Bodega Bar American Restaurant Coffee Shop Pizza Place Sports Bar Asian Restaurant Italian Restaurant Juice Bar Financial or Legal Service
29 Bronx Country Club 40.844246 -73.824099 1 Sandwich Place Chinese Restaurant Flea Market Comic Shop Athletics & Sports Playground Women's Store Event Space Exhibit Factory
30 Bronx Parkchester 40.837938 -73.856003 1 Supermarket Women's Store Pizza Place Kids Store Bank American Restaurant Mattress Store Shipping Store Chinese Restaurant Mexican Restaurant
31 Bronx Westchester Square 40.840619 -73.842194 1 Fast Food Restaurant Indie Theater Sandwich Place Pharmacy Pizza Place Donut Shop Bus Line Asian Restaurant Gym Mexican Restaurant
32 Bronx Van Nest 40.843608 -73.866299 1 Deli / Bodega Pizza Place Board Shop Chinese Restaurant Bus Station Hookah Bar Caribbean Restaurant Middle Eastern Restaurant Supermarket Spa
33 Bronx Morris Park 40.847549 -73.850402 1 Pizza Place Burger Joint Deli / Bodega Bakery Buffet Supermarket Bar Bank Pharmacy Sandwich Place
34 Bronx Belmont 40.857277 -73.888452 1 Italian Restaurant Pizza Place Deli / Bodega Bakery Donut Shop Dessert Shop Bank Spanish Restaurant Fish Market Bar
35 Bronx Spuyten Duyvil 40.881395 -73.917190 1 Park Food Pharmacy Tennis Court Tennis Stadium Thai Restaurant Asian Restaurant Bank Bus Line Intersection
36 Bronx North Riverdale 40.908543 -73.904531 1 Pizza Place Italian Restaurant Bank Bus Station Moving Target Grocery Store Mexican Restaurant Coffee Shop Bagel Shop Sandwich Place
37 Bronx Pelham Bay 40.850641 -73.832074 1 Italian Restaurant Bank Donut Shop Convenience Store Deli / Bodega Gym / Fitness Center Fast Food Restaurant Sandwich Place BBQ Joint Bagel Shop
38 Bronx Schuylerville 40.826580 -73.826203 1 Pharmacy Pizza Place Mexican Restaurant Bar Bank American Restaurant Supermarket Fast Food Restaurant Hobby Shop Sandwich Place
39 Bronx Edgewater Park 40.821986 -73.813885 1 Italian Restaurant Deli / Bodega Donut Shop Pizza Place Asian Restaurant Sports Bar Food & Drink Shop Park Bar Liquor Store
40 Bronx Castle Hill 40.819014 -73.848027 1 Pharmacy Market Spanish Restaurant Diner Park Pizza Place Bank Deli / Bodega Baseball Field Field
41 Bronx Olinville 40.871371 -73.863324 1 Caribbean Restaurant Fried Chicken Joint Convenience Store Metro Station Mexican Restaurant Laundromat Food Basketball Court Supermarket Food Court
42 Bronx Pelham Gardens 40.862966 -73.841612 1 Bus Station Pharmacy Donut Shop Pizza Place Italian Restaurant Construction & Landscaping Spanish Restaurant Boat or Ferry Grocery Store Chinese Restaurant
43 Bronx Concourse 40.834284 -73.915589 1 Deli / Bodega Bakery Spanish Restaurant Grocery Store Bus Station Art Gallery Sandwich Place Liquor Store Donut Shop Supermarket
44 Bronx Unionport 40.829774 -73.850535 1 Donut Shop Ice Cream Shop Latin American Restaurant Seafood Restaurant Lounge Sandwich Place Pizza Place Caribbean Restaurant Comfort Food Restaurant Discount Store
45 Bronx Edenwald 40.884561 -73.848083 1 Supermarket Gas Station Grocery Store Fish Market Gift Shop Pizza Place Women's Store Filipino Restaurant Event Space Exhibit
46 Brooklyn Bay Ridge 40.625801 -74.030621 1 Italian Restaurant Spa Greek Restaurant Pizza Place American Restaurant Pharmacy Bar Playground Hookah Bar Ice Cream Shop
47 Brooklyn Bensonhurst 40.611009 -73.995180 1 Italian Restaurant Sushi Restaurant Donut Shop Ice Cream Shop Pizza Place Chinese Restaurant Factory Bakery Liquor Store Cha Chaan Teng
48 Brooklyn Sunset Park 40.645103 -74.010316 1 Latin American Restaurant Pizza Place Mexican Restaurant Bank Bakery Deli / Bodega Pharmacy Fried Chicken Joint Mobile Phone Shop Gym
49 Brooklyn Greenpoint 40.730201 -73.954241 1 Bar Pizza Place Coffee Shop Cocktail Bar Yoga Studio Grocery Store Record Shop Sushi Restaurant Boutique Mexican Restaurant
50 Brooklyn Gravesend 40.595260 -73.973471 1 Pizza Place Bakery Italian Restaurant Lounge Bus Station Metro Station Bar Pharmacy Eastern European Restaurant Breakfast Spot
51 Brooklyn Brighton Beach 40.576825 -73.965094 1 Russian Restaurant Restaurant Eastern European Restaurant Beach Fast Food Restaurant Mobile Phone Shop Bank Pharmacy Gourmet Shop Sushi Restaurant
52 Brooklyn Sheepshead Bay 40.586890 -73.943186 1 Turkish Restaurant Dessert Shop Sandwich Place Yoga Studio Italian Restaurant Karaoke Bar Grocery Store Miscellaneous Shop Outlet Store Pizza Place
53 Brooklyn Manhattan Terrace 40.614433 -73.957438 1 Pizza Place Donut Shop Coffee Shop Ice Cream Shop Bakery Japanese Restaurant Laundromat Cosmetics Shop Convenience Store Organic Grocery
54 Brooklyn Flatbush 40.636326 -73.958401 1 Coffee Shop Caribbean Restaurant Pharmacy Mexican Restaurant Donut Shop Pizza Place Bagel Shop Plaza Bank Lounge
55 Brooklyn Crown Heights 40.670829 -73.943291 1 Pizza Place Café Museum Convenience Store Bagel Shop Salon / Barbershop Candy Store Bookstore Bakery Coffee Shop
56 Brooklyn East Flatbush 40.641718 -73.936103 1 Hardware Store Print Shop Caribbean Restaurant Pharmacy Moving Target Fast Food Restaurant Supermarket Food & Drink Shop Department Store Park
57 Brooklyn Kensington 40.642382 -73.980421 1 Grocery Store Thai Restaurant Ice Cream Shop Pizza Place Pharmacy Sandwich Place Japanese Restaurant Spa Mexican Restaurant Gas Station
58 Brooklyn Windsor Terrace 40.656946 -73.980073 1 Café Diner Grocery Store Plaza Park Italian Restaurant Bagel Shop Butcher Deli / Bodega Sushi Restaurant
59 Brooklyn Prospect Heights 40.676822 -73.964859 1 Bar Café Wine Shop Mexican Restaurant Thai Restaurant Cocktail Bar Pizza Place Gourmet Shop New American Restaurant Diner
60 Brooklyn Brownsville 40.663950 -73.910235 1 Restaurant Chinese Restaurant Park Playground Pharmacy Farmers Market Caribbean Restaurant Burger Joint Performing Arts Venue Spanish Restaurant
61 Brooklyn Williamsburg 40.707144 -73.958115 1 Bar Coffee Shop Bagel Shop Pizza Place Japanese Restaurant Gym Steakhouse Pet Store Park Middle Eastern Restaurant
62 Brooklyn Bushwick 40.698116 -73.925258 1 Bar Coffee Shop Deli / Bodega Mexican Restaurant Pizza Place Thrift / Vintage Store Discount Store Bakery Chinese Restaurant Italian Restaurant
63 Brooklyn Bedford Stuyvesant 40.687232 -73.941785 1 Pizza Place Café Deli / Bodega Bar Coffee Shop Japanese Restaurant Fried Chicken Joint Boutique Gourmet Shop Park
64 Brooklyn Brooklyn Heights 40.695864 -73.993782 1 Yoga Studio Deli / Bodega Park Bakery Gym Italian Restaurant Cosmetics Shop Thai Restaurant Grocery Store American Restaurant
65 Brooklyn Cobble Hill 40.687920 -73.998561 1 Playground Bar Pizza Place Coffee Shop Yoga Studio Cocktail Bar Deli / Bodega Ice Cream Shop Italian Restaurant Mediterranean Restaurant
66 Brooklyn Carroll Gardens 40.680540 -73.994654 1 Italian Restaurant Pizza Place Coffee Shop Bakery Cocktail Bar Wine Shop Bar Spa Gym / Fitness Center Gourmet Shop
67 Brooklyn Red Hook 40.676253 -74.012759 1 Seafood Restaurant Art Gallery Park American Restaurant Bar Bagel Shop Farm Flower Shop New American Restaurant Ice Cream Shop
68 Brooklyn Gowanus 40.673931 -73.994441 1 Italian Restaurant Bar Deli / Bodega Furniture / Home Store Gym / Fitness Center Pizza Place Coffee Shop Art Gallery Breakfast Spot Mexican Restaurant
69 Brooklyn Fort Greene 40.688527 -73.972906 1 Italian Restaurant Coffee Shop Flower Shop Theater Opera House French Restaurant Cocktail Bar New American Restaurant Yoga Studio Pizza Place
70 Brooklyn Park Slope 40.672321 -73.977050 1 Coffee Shop American Restaurant Burger Joint Italian Restaurant Pizza Place Japanese Restaurant Pet Store Chinese Restaurant Spa Bookstore
71 Brooklyn Cypress Hills 40.682391 -73.876616 1 Fried Chicken Joint Chinese Restaurant Latin American Restaurant Ice Cream Shop Fast Food Restaurant Donut Shop Pizza Place Metro Station Mexican Restaurant Seafood Restaurant
72 Brooklyn East New York 40.669926 -73.880699 1 Fast Food Restaurant Bus Station Event Service Convenience Store Pizza Place Salon / Barbershop Latin American Restaurant Plaza Gym Metro Station
73 Brooklyn Starrett City 40.647589 -73.879370 1 Shopping Mall American Restaurant Donut Shop Pizza Place Caribbean Restaurant Pharmacy Moving Target Convenience Store Bus Stop Supermarket
74 Brooklyn Canarsie 40.635564 -73.902093 1 Thai Restaurant Caribbean Restaurant Gym IT Services Asian Restaurant Women's Store Filipino Restaurant Event Space Exhibit Factory
75 Brooklyn Flatlands 40.630446 -73.929113 1 Pharmacy Fried Chicken Joint Fast Food Restaurant Caribbean Restaurant Athletics & Sports Paper / Office Supplies Store Chinese Restaurant Park Lounge Electronics Store
76 Brooklyn Mill Island 40.606336 -73.908186 3 Pool Financial or Legal Service Ethiopian Restaurant Event Service Event Space Exhibit Factory Falafel Restaurant Farm Farmers Market
77 Brooklyn Manhattan Beach 40.577914 -73.943537 1 Café Pizza Place Playground Beach Bus Stop Food Sandwich Place Ice Cream Shop Field Fast Food Restaurant
78 Brooklyn Coney Island 40.574293 -73.988683 1 Baseball Stadium Caribbean Restaurant Monument / Landmark Theme Park Ride / Attraction Beach Skating Rink Pharmacy Athletics & Sports Park Pizza Place
79 Brooklyn Bath Beach 40.599519 -73.998752 1 Chinese Restaurant Pharmacy Sushi Restaurant Italian Restaurant Bubble Tea Shop Donut Shop Fast Food Restaurant Women's Store Clothing Store Surf Spot
80 Brooklyn Borough Park 40.633131 -73.990498 1 Bank Deli / Bodega Pizza Place Café Pharmacy Japanese Restaurant Hotel Breakfast Spot Fast Food Restaurant Men's Store
81 Brooklyn Dyker Heights 40.619219 -74.019314 1 Playground Bagel Shop Golf Course Plaza Grocery Store School Cosmetics Shop Burger Joint Dance Studio Exhibit
82 Brooklyn Gerritsen Beach 40.590848 -73.930102 1 Pizza Place Ice Cream Shop Bar Skating Rink Bagel Shop Liquor Store Boat or Ferry Gas Station Convenience Store Seafood Restaurant
83 Brooklyn Marine Park 40.609748 -73.931344 1 Pizza Place Baseball Field Basketball Court Deli / Bodega Soccer Field Chinese Restaurant Athletics & Sports Gym Ice Cream Shop Farmers Market
84 Brooklyn Clinton Hill 40.693229 -73.967843 1 Italian Restaurant Pizza Place Wine Shop Mexican Restaurant Japanese Restaurant Thai Restaurant Deli / Bodega Indian Restaurant Restaurant Yoga Studio
85 Brooklyn Sea Gate 40.576375 -74.007873 1 Beach Bus Station Spa Home Service Video Store IT Services Women's Store Filipino Restaurant Event Space Exhibit
86 Brooklyn Downtown 40.690844 -73.983463 1 Coffee Shop Burger Joint Chinese Restaurant Sandwich Place Bar Martial Arts Dojo Middle Eastern Restaurant Cocktail Bar Performing Arts Venue Caribbean Restaurant
87 Brooklyn Boerum Hill 40.685683 -73.983748 1 Bar Dance Studio Coffee Shop Furniture / Home Store Sandwich Place Arts & Crafts Store French Restaurant Deli / Bodega Yoga Studio Gym / Fitness Center
88 Brooklyn Prospect Lefferts Gardens 40.658420 -73.954899 1 Bakery Café Pizza Place Caribbean Restaurant Supermarket Liquor Store Wine Shop Indian Restaurant Ice Cream Shop Deli / Bodega
89 Brooklyn Ocean Hill 40.678403 -73.913068 1 Grocery Store Deli / Bodega Food Southern / Soul Food Restaurant Bus Stop Fried Chicken Joint Playground Park Mexican Restaurant Seafood Restaurant
90 Brooklyn City Line 40.678570 -73.867976 1 Donut Shop Shoe Store Pharmacy Grocery Store Mexican Restaurant Chinese Restaurant Mobile Phone Shop Ski Area Coffee Shop Fast Food Restaurant
91 Brooklyn Bergen Beach 40.615150 -73.898556 1 Harbor / Marina Donut Shop Athletics & Sports Playground Baseball Field Women's Store Field Event Service Event Space Exhibit
92 Brooklyn Midwood 40.625596 -73.957595 1 Pizza Place Pharmacy Moving Target Field Video Game Store Ice Cream Shop Convenience Store Bagel Shop Bakery Candy Store
93 Brooklyn Prospect Park South 40.647009 -73.962613 1 Caribbean Restaurant Mobile Phone Shop Pizza Place Pharmacy Grocery Store Fast Food Restaurant Fried Chicken Joint Donut Shop Women's Store Mexican Restaurant
94 Brooklyn Georgetown 40.623845 -73.916075 1 Bank Donut Shop Breakfast Spot Pharmacy Italian Restaurant Shopping Mall Shipping Store Sandwich Place Pizza Place Pet Store
95 Brooklyn East Williamsburg 40.708492 -73.938858 1 Bar Bakery Cocktail Bar Coffee Shop Deli / Bodega Concert Hall Music Venue Café Mexican Restaurant Sandwich Place
96 Brooklyn North Side 40.714823 -73.958809 1 Coffee Shop Pizza Place Bar Yoga Studio Wine Bar American Restaurant Jewelry Store Burger Joint Seafood Restaurant Movie Theater
97 Brooklyn South Side 40.710861 -73.958001 1 Bar Coffee Shop Pizza Place American Restaurant Yoga Studio Wine Bar Breakfast Spot Chinese Restaurant South American Restaurant Burger Joint
98 Brooklyn Ocean Parkway 40.613060 -73.968367 1 Liquor Store Pizza Place Bus Stop Supermarket Paper / Office Supplies Store Grocery Store Bus Station Chinese Restaurant Bakery Bagel Shop
99 Brooklyn Fort Hamilton 40.614768 -74.031979 1 Deli / Bodega Italian Restaurant Bank Gym / Fitness Center Sandwich Place Pizza Place Diner Steakhouse Bus Stop Chinese Restaurant
100 Manhattan Chinatown 40.715618 -73.994279 1 Chinese Restaurant Cocktail Bar American Restaurant Bakery Spa Salon / Barbershop Vietnamese Restaurant Optical Shop Dumpling Restaurant Mexican Restaurant
101 Manhattan Washington Heights 40.851903 -73.936900 1 Café Grocery Store Bakery Chinese Restaurant Mobile Phone Shop Latin American Restaurant Donut Shop Spanish Restaurant Coffee Shop Mexican Restaurant
102 Manhattan Inwood 40.867684 -73.921210 1 Mexican Restaurant Restaurant Café Lounge Pizza Place Bakery Wine Bar Deli / Bodega Park American Restaurant
103 Manhattan Hamilton Heights 40.823604 -73.949688 1 Pizza Place Deli / Bodega Coffee Shop Mexican Restaurant Café Liquor Store Indian Restaurant Sushi Restaurant Park Sandwich Place
104 Manhattan Manhattanville 40.816934 -73.957385 1 Coffee Shop Park Chinese Restaurant Liquor Store Seafood Restaurant Mexican Restaurant Sushi Restaurant Italian Restaurant Music School Falafel Restaurant
105 Manhattan Central Harlem 40.815976 -73.943211 1 Cosmetics Shop French Restaurant African Restaurant Bar American Restaurant Seafood Restaurant Chinese Restaurant Ethiopian Restaurant Bookstore Bagel Shop
106 Manhattan East Harlem 40.792249 -73.944182 1 Mexican Restaurant Thai Restaurant Bakery Deli / Bodega Latin American Restaurant French Restaurant Spanish Restaurant Gym Grocery Store Beer Bar
107 Manhattan Upper East Side 40.775639 -73.960508 1 Italian Restaurant Exhibit Art Gallery Bakery Juice Bar Gym / Fitness Center Coffee Shop Hotel French Restaurant Vegetarian / Vegan Restaurant
108 Manhattan Yorkville 40.775930 -73.947118 1 Italian Restaurant Coffee Shop Gym Bar Deli / Bodega Pizza Place Diner Sushi Restaurant Bakery Japanese Restaurant
109 Manhattan Lenox Hill 40.768113 -73.958860 1 Coffee Shop Italian Restaurant Pizza Place Cocktail Bar Sporting Goods Shop Sushi Restaurant Gym / Fitness Center Gym Burger Joint Café
110 Manhattan Roosevelt Island 40.762160 -73.949168 1 Coffee Shop Park Sandwich Place Japanese Restaurant Deli / Bodega Bridge Bubble Tea Shop Bus Line Soccer Field School
111 Manhattan Upper West Side 40.787658 -73.977059 1 Italian Restaurant Wine Bar Bar Coffee Shop Mediterranean Restaurant Bakery Café Pub Indian Restaurant Ice Cream Shop
112 Manhattan Lincoln Square 40.773529 -73.985338 1 Plaza Café Concert Hall Italian Restaurant Theater Performing Arts Venue Gym / Fitness Center French Restaurant Park Indie Movie Theater
113 Manhattan Clinton 40.759101 -73.996119 1 Theater Italian Restaurant Gym / Fitness Center Coffee Shop Spa American Restaurant Hotel Sandwich Place Gym Wine Shop
114 Manhattan Midtown 40.754691 -73.981669 1 Hotel Sporting Goods Shop Clothing Store Theater Food Truck Coffee Shop Spa Steakhouse Japanese Restaurant Bakery
115 Manhattan Murray Hill 40.748303 -73.978332 1 Korean Restaurant Coffee Shop Japanese Restaurant Bar Sandwich Place American Restaurant Pub Gym Italian Restaurant Chinese Restaurant
116 Manhattan Chelsea 40.744035 -74.003116 1 Italian Restaurant Coffee Shop Bakery Ice Cream Shop Theater American Restaurant Hotel Seafood Restaurant Nightclub Cocktail Bar
117 Manhattan Greenwich Village 40.726933 -73.999914 1 Italian Restaurant Clothing Store Sushi Restaurant Indian Restaurant American Restaurant Café French Restaurant Seafood Restaurant Gourmet Shop Chinese Restaurant
118 Manhattan East Village 40.727847 -73.982226 1 Bar Wine Bar Ice Cream Shop Mexican Restaurant Chinese Restaurant Cocktail Bar Pizza Place Coffee Shop Vegetarian / Vegan Restaurant Japanese Restaurant
119 Manhattan Lower East Side 40.717807 -73.980890 1 Café Pizza Place Chinese Restaurant Japanese Restaurant Cocktail Bar Ramen Restaurant Coffee Shop Bakery Theater Art Gallery
120 Manhattan Tribeca 40.721522 -74.010683 1 Italian Restaurant Park American Restaurant Café Spa Greek Restaurant Wine Shop Wine Bar Coffee Shop Men's Store
121 Manhattan Little Italy 40.719324 -73.997305 1 Italian Restaurant Bakery Café Bubble Tea Shop Sandwich Place Clothing Store Cocktail Bar Salon / Barbershop Mediterranean Restaurant Women's Store
122 Manhattan Soho 40.722184 -74.000657 1 Clothing Store Boutique Women's Store Art Gallery Shoe Store Men's Store Bakery Sporting Goods Shop Italian Restaurant Mediterranean Restaurant
123 Manhattan West Village 40.734434 -74.006180 1 Italian Restaurant New American Restaurant Cosmetics Shop American Restaurant Wine Bar Cocktail Bar Park Jazz Club Gastropub Bakery
124 Manhattan Manhattan Valley 40.797307 -73.964286 1 Indian Restaurant Coffee Shop Bar Yoga Studio Café Park Mexican Restaurant Pizza Place Peruvian Restaurant Noodle House
125 Manhattan Morningside Heights 40.808000 -73.963896 1 Park Coffee Shop American Restaurant Bookstore Burger Joint Sandwich Place Deli / Bodega Pizza Place Food Truck Pharmacy
126 Manhattan Gramercy 40.737210 -73.981376 1 Bar Italian Restaurant Bagel Shop Pizza Place Mexican Restaurant Diner Coffee Shop Cocktail Bar Thai Restaurant American Restaurant
127 Manhattan Battery Park City 40.711932 -74.016869 1 Park Coffee Shop Hotel Gym Wine Shop Memorial Site BBQ Joint Shopping Mall Plaza Clothing Store
128 Manhattan Financial District 40.707107 -74.010665 1 Coffee Shop American Restaurant Pizza Place Gym Food Truck Hotel Bar Steakhouse Café Gym / Fitness Center
129 Queens Astoria 40.768509 -73.915654 1 Bar Middle Eastern Restaurant Greek Restaurant Hookah Bar Seafood Restaurant Café Pizza Place Mediterranean Restaurant Bakery Grocery Store
130 Queens Woodside 40.746349 -73.901842 1 Grocery Store Thai Restaurant Bakery Latin American Restaurant Filipino Restaurant Deli / Bodega Pizza Place Pub American Restaurant Donut Shop
131 Queens Jackson Heights 40.751981 -73.882821 1 Latin American Restaurant South American Restaurant Peruvian Restaurant Bakery Mobile Phone Shop Thai Restaurant Mexican Restaurant Diner Shoe Store Empanada Restaurant
132 Queens Elmhurst 40.744049 -73.881656 1 Thai Restaurant Mexican Restaurant South American Restaurant Chinese Restaurant Vietnamese Restaurant Malay Restaurant Pizza Place Seafood Restaurant Food Court Bar
133 Queens Howard Beach 40.654225 -73.838138 1 Italian Restaurant Pharmacy Bagel Shop Bank Sandwich Place Fast Food Restaurant Gym Shipping Store Clothing Store Spa
134 Queens Corona 40.742382 -73.856825 1 Mexican Restaurant Park Restaurant Bakery South American Restaurant Pizza Place Latin American Restaurant Playground Supermarket Donut Shop
135 Queens Forest Hills 40.725264 -73.844475 1 Gym / Fitness Center Gym Yoga Studio Pizza Place Park Thai Restaurant Convenience Store Pharmacy Supplement Shop Farmers Market
136 Queens Kew Gardens 40.705179 -73.829819 1 Chinese Restaurant Indian Restaurant Donut Shop Bar Park Bank Pizza Place Cosmetics Shop Convenience Store Spa
137 Queens Richmond Hill 40.697947 -73.831833 1 Bank Caribbean Restaurant Lounge Latin American Restaurant Pizza Place Metro Station Pet Service Taco Place Sandwich Place Donut Shop
138 Queens Flushing 40.764454 -73.831773 1 Hotpot Restaurant Bubble Tea Shop Chinese Restaurant Korean Restaurant Seafood Restaurant Gym Szechuan Restaurant Bakery Karaoke Bar Asian Restaurant
139 Queens Long Island City 40.750217 -73.939202 1 Coffee Shop Hotel Bar Mexican Restaurant Pizza Place Café Gym / Fitness Center Donut Shop Deli / Bodega Chinese Restaurant
140 Queens Sunnyside 40.740176 -73.926916 1 Pizza Place Italian Restaurant Coffee Shop Bakery Chinese Restaurant Discount Store Theater Mexican Restaurant Hotel South American Restaurant
141 Queens East Elmhurst 40.764073 -73.867041 1 Donut Shop Hotel Bar Gas Station Coffee Shop Lake Ice Cream Shop Supermarket Rental Car Location Exhibit Factory
142 Queens Maspeth 40.725427 -73.896217 1 Pizza Place Diner Grocery Store Mobile Phone Shop Bank Park Pharmacy Bakery Lounge Japanese Restaurant
143 Queens Ridgewood 40.708323 -73.901435 1 Eastern European Restaurant Mobile Phone Shop Greek Restaurant Pizza Place Playground Grocery Store Bakery Bank Sandwich Place Pet Store
144 Queens Glendale 40.702762 -73.870742 1 Arts & Crafts Store Chinese Restaurant Brewery Deli / Bodega Food & Drink Shop Pizza Place Fish & Chips Shop Exhibit Factory Falafel Restaurant
145 Queens Rego Park 40.728974 -73.857827 1 Bakery Sandwich Place Donut Shop Bagel Shop Sushi Restaurant Restaurant Grocery Store Pharmacy Pizza Place Japanese Restaurant
146 Queens Woodhaven 40.689887 -73.858110 1 Deli / Bodega Bank Pharmacy Japanese Restaurant Hookah Bar Fried Chicken Joint Supermarket Mexican Restaurant Metro Station Thai Restaurant
147 Queens Ozone Park 40.680708 -73.843203 1 Pizza Place Pharmacy Bank Diner Gym Event Space Martial Arts Dojo Sandwich Place Fast Food Restaurant Breakfast Spot
148 Queens South Ozone Park 40.668550 -73.809865 1 Park Deli / Bodega Fast Food Restaurant Bar Hotel Gym / Fitness Center Home Service Donut Shop Sandwich Place Flower Shop
149 Queens College Point 40.784903 -73.843045 1 Deli / Bodega Chinese Restaurant Pizza Place Latin American Restaurant Asian Restaurant Bar Pharmacy Sandwich Place Bakery Steakhouse
150 Queens Whitestone 40.781291 -73.814202 0 Bubble Tea Shop Dance Studio Deli / Bodega Candy Store Fish Market Exhibit Factory Falafel Restaurant Farm Farmers Market
151 Queens Bayside 40.766041 -73.774274 1 Bar American Restaurant Pizza Place Mexican Restaurant Indian Restaurant Sushi Restaurant Italian Restaurant Bakery Spa Greek Restaurant
152 Queens Auburndale 40.761730 -73.791762 1 Pet Store Discount Store Mobile Phone Shop Sushi Restaurant Toy / Game Store Hookah Bar Miscellaneous Shop Athletics & Sports Fast Food Restaurant Korean Restaurant
153 Queens Little Neck 40.770826 -73.738898 1 Chinese Restaurant Deli / Bodega Italian Restaurant Korean Restaurant Bank Coffee Shop Bakery Spa Bus Station Pizza Place
154 Queens Douglaston 40.766846 -73.742498 1 Bakery Deli / Bodega Bank Donut Shop Convenience Store Liquor Store Lounge Pharmacy Supermarket Korean Restaurant
155 Queens Glen Oaks 40.749441 -73.715481 1 Pharmacy Bus Station Bakery Sandwich Place Gift Shop Park Fast Food Restaurant Donut Shop Pizza Place Bagel Shop
156 Queens Bellerose 40.728573 -73.720128 1 Pizza Place Italian Restaurant Chinese Restaurant Wine Shop Gas Station Mobile Phone Shop Salon / Barbershop Donut Shop Motel Seafood Restaurant
157 Queens Kew Gardens Hills 40.722578 -73.820878 1 Bank Pizza Place Playground Convenience Store Sushi Restaurant Bagel Shop Middle Eastern Restaurant Smoke Shop Restaurant Gift Shop
158 Queens Fresh Meadows 40.734394 -73.782713 1 Bus Station Chinese Restaurant Pharmacy Train Grocery Store Pizza Place Playground Food Truck Vegetarian / Vegan Restaurant Cosmetics Shop
159 Queens Briarwood 40.710935 -73.811748 1 Playground Fast Food Restaurant Arts & Crafts Store Deli / Bodega Bus Station Mexican Restaurant Gym Coffee Shop Filipino Restaurant Field
160 Queens Jamaica Center 40.704657 -73.796902 1 Mobile Phone Shop Sandwich Place Clothing Store Caribbean Restaurant Pizza Place Mexican Restaurant Performing Arts Venue Coffee Shop Fried Chicken Joint Sporting Goods Shop
161 Queens Oakland Gardens 40.745619 -73.754950 1 Korean Restaurant Yoga Studio Chinese Restaurant Clothing Store Taiwanese Restaurant Coffee Shop Bank Bakery Bagel Shop Sandwich Place
162 Queens Queens Village 40.718893 -73.738715 1 Bank Salon / Barbershop Sandwich Place Donut Shop Fish Market Mexican Restaurant Discount Store Bakery Fried Chicken Joint Martial Arts Dojo
163 Queens Hollis 40.711243 -73.759250 1 Baseball Field Park Shopping Mall Sandwich Place Asian Restaurant Fast Food Restaurant Mobile Phone Shop Grocery Store Chinese Restaurant Electronics Store
164 Queens South Jamaica 40.696911 -73.790426 1 Bus Station Bakery Supermarket Bus Line Caribbean Restaurant Grocery Store Women's Store Financial or Legal Service Factory Falafel Restaurant
165 Queens St. Albans 40.694445 -73.758676 1 Caribbean Restaurant Fast Food Restaurant Chinese Restaurant Discount Store Motorcycle Shop Donut Shop Café Grocery Store Market Convenience Store
166 Queens Rochdale 40.675211 -73.772588 1 Market Southern / Soul Food Restaurant Bus Station Bus Stop Laundromat Liquor Store Donut Shop Pizza Place Pharmacy Pet Store
167 Queens Springfield Gardens 40.666230 -73.760421 1 Fried Chicken Joint Donut Shop Bus Station Shoe Store Chinese Restaurant Park Gym Check Cashing Service Liquor Store Fast Food Restaurant
168 Queens Cambria Heights 40.692775 -73.735269 1 Caribbean Restaurant Nightclub Moving Target Chinese Restaurant Pharmacy Gym / Fitness Center Restaurant Cosmetics Shop Flower Shop Liquor Store
169 Queens Rosedale 40.659816 -73.735261 1 Bus Station Baseball Field Sandwich Place Supermarket Caribbean Restaurant Smoke Shop Chinese Restaurant Pharmacy Liquor Store Fried Chicken Joint
170 Queens Far Rockaway 40.603134 -73.754980 1 Pizza Place Deli / Bodega Grocery Store Chinese Restaurant Fried Chicken Joint Pharmacy Bus Station Bank Fast Food Restaurant Metro Station
171 Queens Broad Channel 40.603027 -73.820055 1 Dive Bar Deli / Bodega Sporting Goods Shop Other Nightlife Pizza Place Financial or Legal Service Event Space Exhibit Factory Falafel Restaurant
172 Queens Breezy Point 40.557401 -73.925512 1 Supermarket Trail Beach Bus Stop Monument / Landmark Women's Store Financial or Legal Service Exhibit Factory Falafel Restaurant
173 Queens Steinway 40.775923 -73.902290 1 Rental Car Location Women's Store Sushi Restaurant Pizza Place Men's Store Italian Restaurant Irish Pub Gym / Fitness Center Donut Shop Dessert Shop
174 Queens Beechhurst 40.792781 -73.804365 1 Chinese Restaurant Yoga Studio Donut Shop Optical Shop Supermarket Boutique Gym Gym / Fitness Center Pizza Place Health & Beauty Service
175 Queens Bay Terrace 40.782843 -73.776802 1 Clothing Store Donut Shop Supermarket Italian Restaurant American Restaurant Kids Store Mobile Phone Shop Cosmetics Shop Women's Store Lingerie Store
176 Queens Edgemere 40.595642 -73.776133 1 Pizza Place Metro Station Gift Shop Farm Bus Station Asian Restaurant Deli / Bodega Park Seafood Restaurant Skate Park
177 Queens Arverne 40.589144 -73.791992 1 Surf Spot Sandwich Place Metro Station Donut Shop Board Shop Pizza Place Coffee Shop Playground Beach Bus Stop
178 Queens Rockaway Beach 40.582802 -73.822361 1 Beach Bagel Shop BBQ Joint Ice Cream Shop Pizza Place Food Truck Arepa Restaurant Latin American Restaurant Fast Food Restaurant Poke Place
179 Queens Neponsit 40.572037 -73.857547 2 Beach Women's Store Fish & Chips Shop Event Space Exhibit Factory Falafel Restaurant Farm Farmers Market Fast Food Restaurant
180 Queens Murray Hill 40.764126 -73.812763 1 Korean Restaurant Coffee Shop Japanese Restaurant Bar Sandwich Place American Restaurant Pub Gym Italian Restaurant Chinese Restaurant
181 Queens Floral Park 40.741378 -73.708847 1 Indian Restaurant Basketball Court Salon / Barbershop Dosa Place Pizza Place Grocery Store Event Service Event Space Exhibit Factory
182 Queens Holliswood 40.720957 -73.767142 1 Supermarket Mobile Phone Shop Donut Shop Playground Women's Store Filipino Restaurant Event Space Exhibit Factory Falafel Restaurant
183 Queens Jamaica Estates 40.716805 -73.787227 1 Intersection Bus Station Indian Restaurant Women's Store Financial or Legal Service Event Service Event Space Exhibit Factory Falafel Restaurant
184 Queens Queensboro Hill 40.744572 -73.825809 1 Chinese Restaurant Bank Bakery Intersection Supermarket Shanghai Restaurant Bus Station Bar Bagel Shop Liquor Store
185 Queens Hillcrest 40.723825 -73.797603 1 Grocery Store Donut Shop Italian Restaurant Pizza Place Food Court Fast Food Restaurant Snack Place Mobile Phone Shop Market Coffee Shop
186 Queens Ravenswood 40.761705 -73.931575 1 Chinese Restaurant Grocery Store Japanese Restaurant Latin American Restaurant Food Truck Food & Drink Shop Ramen Restaurant Brazilian Restaurant Sushi Restaurant Taco Place
187 Queens Lindenwood 40.663918 -73.849638 1 Japanese Restaurant Hotel Chinese Restaurant Bank Bakery Gym Liquor Store Pizza Place Donut Shop Playground
188 Queens Laurelton 40.667884 -73.740256 1 Cosmetics Shop Caribbean Restaurant Train Station Women's Store Filipino Restaurant Event Service Event Space Exhibit Factory Falafel Restaurant
189 Queens Lefrak City 40.736075 -73.862525 1 Bakery Cosmetics Shop Department Store Fruit & Vegetable Store Mexican Restaurant Sandwich Place BBQ Joint Bank Liquor Store Shopping Mall
190 Queens Belle Harbor 40.576156 -73.854018 1 Beach Deli / Bodega Pub Spa Bakery Pharmacy Italian Restaurant Chinese Restaurant Mexican Restaurant Donut Shop
191 Queens Rockaway Park 40.580343 -73.841534 1 Beach Pizza Place Donut Shop Bank Yoga Studio Automotive Shop Deli / Bodega Diner Sandwich Place Pharmacy
192 Queens Somerville 40.597711 -73.796648 3 Park Women's Store English Restaurant Event Service Event Space Exhibit Factory Falafel Restaurant Farm Farmers Market
193 Queens Brookville 40.660003 -73.751753 0 Deli / Bodega Women's Store Fish & Chips Shop Event Service Event Space Exhibit Factory Falafel Restaurant Farm Farmers Market
194 Queens Bellaire 40.733014 -73.738892 1 Chinese Restaurant Convenience Store Halal Restaurant Gym Coffee Shop Greek Restaurant Moving Target Diner Italian Restaurant Bus Station
195 Queens North Corona 40.754071 -73.857518 1 Deli / Bodega Spanish Restaurant Gym / Fitness Center Pizza Place Bakery Hotel Caribbean Restaurant Mobile Phone Shop Gym Mexican Restaurant
196 Queens Forest Hills Gardens 40.714611 -73.841022 1 Bakery Food & Drink Shop Playground Tapas Restaurant Bagel Shop Mexican Restaurant Pharmacy Sandwich Place Donut Shop Grocery Store
197 Staten Island St. George 40.644982 -74.079353 1 Clothing Store Italian Restaurant American Restaurant Sporting Goods Shop Bar Snack Place Monument / Landmark Coffee Shop Tourist Information Center Toy / Game Store
198 Staten Island New Brighton 40.640615 -74.087017 0 Bus Stop Deli / Bodega Park Bowling Alley Discount Store Playground Women's Store Fish & Chips Shop Factory Falafel Restaurant
199 Staten Island Stapleton 40.626928 -74.077902 1 Pizza Place Mexican Restaurant Sandwich Place Café Discount Store Bank Restaurant Donut Shop Motorcycle Shop Beer Bar
200 Staten Island Rosebank 40.615305 -74.069805 1 Grocery Store Italian Restaurant Pharmacy Discount Store Mexican Restaurant Beach Bar Bagel Shop Sandwich Place Filipino Restaurant
201 Staten Island West Brighton 40.631879 -74.107182 1 Coffee Shop Deli / Bodega Pharmacy Music Store Bank Bar Italian Restaurant Piercing Parlor Breakfast Spot Liquor Store
202 Staten Island Grymes Hill 40.624185 -74.087248 0 Bus Stop Dog Run Women's Store Fish & Chips Shop Event Space Exhibit Factory Falafel Restaurant Farm Farmers Market
203 Staten Island Todt Hill 40.597069 -74.111329 3 Park Women's Store English Restaurant Event Service Event Space Exhibit Factory Falafel Restaurant Farm Farmers Market
204 Staten Island South Beach 40.580247 -74.079553 0 Beach Pier Deli / Bodega Bus Stop Athletics & Sports Women's Store Financial or Legal Service Exhibit Factory Falafel Restaurant
205 Staten Island Port Richmond 40.633669 -74.129434 1 Rental Car Location Basketball Court Food Donut Shop Financial or Legal Service Event Space Exhibit Factory Falafel Restaurant Farm
206 Staten Island Mariner's Harbor 40.632546 -74.150085 0 Italian Restaurant Deli / Bodega Bus Stop Athletics & Sports Women's Store Fish & Chips Shop Event Space Exhibit Factory Falafel Restaurant
207 Staten Island Port Ivory 40.639683 -74.174645 4 Bar Fish & Chips Shop Event Service Event Space Exhibit Factory Falafel Restaurant Farm Farmers Market Fast Food Restaurant
208 Staten Island Castleton Corners 40.613336 -74.119181 1 Pizza Place Ice Cream Shop Sandwich Place Tattoo Parlor Mini Golf Grocery Store Bagel Shop Japanese Restaurant Indian Restaurant Bank
209 Staten Island New Springville 40.594252 -74.164960 1 Coffee Shop Health & Beauty Service Pizza Place Chinese Restaurant Deli / Bodega Mexican Restaurant Spa Ice Cream Shop Donut Shop Restaurant
210 Staten Island Travis 40.586314 -74.190737 1 Hotel Bowling Alley Deli / Bodega Park Gym / Fitness Center Gym Home Service Donut Shop Comedy Club Café
211 Staten Island New Dorp 40.572572 -74.116479 1 Pizza Place Italian Restaurant Coffee Shop Chinese Restaurant Mexican Restaurant Taco Place Sandwich Place Bank Bakery Bagel Shop
212 Staten Island Oakwood 40.558462 -74.121566 4 Bar Playground Bus Station Lawyer Event Service Event Space Exhibit Factory Falafel Restaurant Farm
213 Staten Island Great Kills 40.549480 -74.149324 1 Bar Pizza Place Italian Restaurant Japanese Restaurant Grocery Store Pharmacy Liquor Store Mexican Restaurant Bakery Bank
214 Staten Island Eltingville 40.542231 -74.164331 1 Pizza Place Sushi Restaurant Diner Fast Food Restaurant Pharmacy Bank Italian Restaurant Gourmet Shop Gastropub Bakery
215 Staten Island Annadale 40.538114 -74.178549 1 Pizza Place Bakery Park Diner Pub Train Station American Restaurant Restaurant Sports Bar Sushi Restaurant
216 Staten Island Woodrow 40.541968 -74.205246 1 Pharmacy Coffee Shop Cosmetics Shop Bagel Shop Sushi Restaurant Bakery Bank Pizza Place Donut Shop Miscellaneous Shop
217 Staten Island Tottenville 40.505334 -74.246569 1 Thrift / Vintage Store Deli / Bodega Home Service Miscellaneous Shop Bus Stop Mexican Restaurant Cosmetics Shop Italian Restaurant Factory Filipino Restaurant
218 Staten Island Tompkinsville 40.637316 -74.080554 1 Thrift / Vintage Store Café Brewery Park Pizza Place Rock Club Supermarket Caribbean Restaurant Gastropub Mexican Restaurant
219 Staten Island Silver Lake 40.619193 -74.096290 1 Burger Joint American Restaurant Golf Course Women's Store Fish & Chips Shop Event Space Exhibit Factory Falafel Restaurant Farm
220 Staten Island Sunnyside 40.612760 -74.097126 1 Pizza Place Italian Restaurant Coffee Shop Bakery Chinese Restaurant Discount Store Theater Mexican Restaurant Hotel South American Restaurant
221 Brooklyn Ditmas Park 40.643675 -73.961013 1 Women's Store Pizza Place Donut Shop Caribbean Restaurant Pharmacy Chinese Restaurant Burger Joint Ramen Restaurant Salon / Barbershop Sandwich Place
222 Brooklyn Wingate 40.660947 -73.937187 1 Fast Food Restaurant Pharmacy Discount Store Bus Station Flower Shop Fish & Chips Shop Field Gym / Fitness Center Hardware Store Nightclub
223 Brooklyn Rugby 40.655572 -73.926882 1 Grocery Store Bank Caribbean Restaurant Supermarket Fried Chicken Joint Pizza Place Pharmacy Seafood Restaurant Mobile Phone Shop Sandwich Place
224 Staten Island Park Hill 40.609190 -74.080157 0 Bus Stop Athletics & Sports Coffee Shop Gym / Fitness Center Hotel Women's Store Filipino Restaurant Event Space Exhibit Factory
225 Staten Island Westerleigh 40.621090 -74.133041 1 Convenience Store Arcade Women's Store Fish & Chips Shop Event Service Event Space Exhibit Factory Falafel Restaurant Farm
226 Staten Island Graniteville 40.620172 -74.153152 1 Supermarket Food Truck Boat or Ferry Women's Store Fish & Chips Shop Event Space Exhibit Factory Falafel Restaurant Farm
227 Staten Island Arlington 40.635325 -74.165104 0 Deli / Bodega Grocery Store Scenic Lookout Playground Women's Store Field Event Service Event Space Exhibit Factory
228 Staten Island Arrochar 40.596313 -74.067124 1 Italian Restaurant Deli / Bodega Bus Stop Food Truck Supermarket Middle Eastern Restaurant Liquor Store Outdoors & Recreation Bagel Shop Sandwich Place
229 Staten Island Grasmere 40.598268 -74.076674 1 Bus Stop Grocery Store Bank Bakery Japanese Restaurant Vegetarian / Vegan Restaurant Ice Cream Shop Nail Salon Park Pharmacy
230 Staten Island Old Town 40.596329 -74.087511 1 Italian Restaurant Pharmacy Restaurant Donut Shop Pizza Place Middle Eastern Restaurant Mattress Store Bakery Grocery Store Liquor Store
231 Staten Island Dongan Hills 40.588673 -74.096399 1 Pharmacy Italian Restaurant Deli / Bodega Bagel Shop Pizza Place Convenience Store Train Station Fast Food Restaurant Sushi Restaurant Bank
232 Staten Island Midland Beach 40.573527 -74.093483 1 Beach Deli / Bodega Basketball Court Bookstore Baseball Field Bus Stop Dessert Shop Restaurant Chinese Restaurant Pet Store
233 Staten Island Grant City 40.576216 -74.105856 1 Pizza Place Bus Stop Convenience Store Health & Beauty Service Mexican Restaurant Pharmacy Bar Event Space Grocery Store Fast Food Restaurant
234 Staten Island New Dorp Beach 40.564255 -74.104327 1 Italian Restaurant Deli / Bodega Women's Store Restaurant Skating Rink Diner Food Scenic Lookout Sports Bar Beach
235 Staten Island Bay Terrace 40.553988 -74.139166 1 Clothing Store Donut Shop Supermarket Italian Restaurant American Restaurant Kids Store Mobile Phone Shop Cosmetics Shop Women's Store Lingerie Store
236 Staten Island Huguenot 40.531912 -74.191741 1 Bank Italian Restaurant Donut Shop Ice Cream Shop Sandwich Place Asian Restaurant Deli / Bodega Bridal Shop Factory Exhibit
237 Staten Island Pleasant Plains 40.524699 -74.219831 1 Donut Shop Pizza Place Rental Car Location Discount Store Bus Stop Food Fast Food Restaurant Bank Dry Cleaner Liquor Store
238 Staten Island Butler Manor 40.506082 -74.229504 1 Baseball Field Pool Convenience Store Bus Stop Financial or Legal Service Event Service Event Space Exhibit Factory Falafel Restaurant
239 Staten Island Charleston 40.530531 -74.232158 1 Big Box Store Cosmetics Shop Women's Store Furniture / Home Store Sporting Goods Shop Shoe Store Pizza Place Pet Store Music Venue Mobile Phone Shop
240 Staten Island Rossville 40.549404 -74.215729 1 Pizza Place Bagel Shop Convenience Store Moving Target Chinese Restaurant Deli / Bodega Dry Cleaner Liquor Store American Restaurant Grocery Store
241 Staten Island Arden Heights 40.549286 -74.185887 0 Pharmacy Deli / Bodega Bus Stop Coffee Shop Pizza Place Women's Store Filipino Restaurant Event Space Exhibit Factory
242 Staten Island Greenridge 40.555295 -74.170794 1 Lawyer Bagel Shop Construction & Landscaping Diner Pizza Place Women's Store Event Space Exhibit Factory Falafel Restaurant
243 Staten Island Heartland Village 40.589139 -74.159022 1 Coffee Shop Donut Shop Spa Accessories Store Food Truck Health & Beauty Service Pharmacy Restaurant Pizza Place Farmers Market
244 Staten Island Chelsea 40.594726 -74.189560 1 Italian Restaurant Coffee Shop Bakery Ice Cream Shop Theater American Restaurant Hotel Seafood Restaurant Nightclub Cocktail Bar
245 Staten Island Bloomfield 40.605779 -74.187256 1 Recreation Center Park Theme Park Bus Stop Discount Store Filipino Restaurant Event Space Exhibit Factory Falafel Restaurant
246 Staten Island Bulls Head 40.609592 -74.159409 1 Bus Stop Pizza Place Pharmacy Deli / Bodega Chinese Restaurant Thai Restaurant Baseball Field Liquor Store Coffee Shop Sandwich Place
247 Manhattan Carnegie Hill 40.782683 -73.953256 1 Coffee Shop Pizza Place Café Cosmetics Shop Japanese Restaurant Bakery Bar Bookstore French Restaurant Grocery Store
248 Manhattan Noho 40.723259 -73.988434 1 Italian Restaurant French Restaurant Cocktail Bar Pizza Place Coffee Shop Grocery Store Mexican Restaurant Art Gallery Rock Club Boutique
249 Manhattan Civic Center 40.715229 -74.005415 1 Gym / Fitness Center Italian Restaurant Hotel French Restaurant Coffee Shop Yoga Studio Spa Bakery American Restaurant Park
250 Manhattan Midtown South 40.748510 -73.988713 1 Korean Restaurant Hotel Japanese Restaurant Dessert Shop Hotel Bar American Restaurant Cocktail Bar Coffee Shop Cosmetics Shop Salad Place
251 Staten Island Richmond Town 40.569606 -74.134057 1 Italian Restaurant Bagel Shop History Museum Spa Café Financial or Legal Service Event Space Exhibit Factory Falafel Restaurant
252 Staten Island Shore Acres 40.609719 -74.066678 1 Italian Restaurant Deli / Bodega Bus Stop Intersection Bar Bagel Shop Gastropub Furniture / Home Store Music Store Nail Salon
253 Staten Island Clifton 40.619178 -74.072642 1 Grocery Store Mexican Restaurant Pizza Place Train Station Intersection Taco Place Storage Facility American Restaurant Museum Bus Stop
254 Staten Island Concord 40.604473 -74.084024 1 Athletics & Sports Chinese Restaurant Deli / Bodega Supermarket Bagel Shop Park Coffee Shop Gym / Fitness Center Peruvian Restaurant Women's Store
256 Staten Island Randall Manor 40.635630 -74.098051 0 Bus Stop Bagel Shop Deli / Bodega Park Women's Store Financial or Legal Service Event Space Exhibit Factory Falafel Restaurant
258 Staten Island Elm Park 40.630147 -74.141817 0 Bus Stop Deli / Bodega Italian Restaurant Pizza Place Cosmetics Shop American Restaurant Ice Cream Shop Field Fast Food Restaurant Farmers Market
259 Brooklyn Remsen Village 40.652117 -73.916653 1 Caribbean Restaurant Fast Food Restaurant Fried Chicken Joint Construction & Landscaping Coffee Shop Sandwich Place Salad Place Donut Shop Café Fish Market
260 Brooklyn New Lots 40.662744 -73.885118 1 Pizza Place Fast Food Restaurant Grocery Store Furniture / Home Store Bus Station Breakfast Spot Chinese Restaurant Metro Station Park Bank
261 Brooklyn Paerdegat Basin 40.631318 -73.902335 1 Harbor / Marina Food Asian Restaurant Women's Store Financial or Legal Service Event Space Exhibit Factory Falafel Restaurant Farm
262 Brooklyn Mill Basin 40.615974 -73.915154 1 Chinese Restaurant Japanese Restaurant Pizza Place Bagel Shop Cosmetics Shop Bank Sushi Restaurant Pet Store Bakery Liquor Store
263 Queens Jamaica Hills 40.711460 -73.796465 1 Pharmacy Donut Shop Fast Food Restaurant Fried Chicken Joint Indian Restaurant Chinese Restaurant Halal Restaurant Thai Restaurant Pet Store Coffee Shop
264 Queens Utopia 40.733500 -73.796717 1 Deli / Bodega Spa Ice Cream Shop Donut Shop Pizza Place Playground South American Restaurant Bakery Automotive Shop History Museum
265 Queens Pomonok 40.734936 -73.804861 1 Japanese Restaurant Playground Bus Station Supermarket Food & Drink Shop Bowling Alley Park Scenic Lookout Pizza Place Bar
266 Queens Astoria Heights 40.770317 -73.894680 1 Italian Restaurant Plaza Bus Station Supermarket Bowling Alley Chinese Restaurant Shopping Mall Bakery Hostel Pizza Place
267 Bronx Claremont Village 40.831428 -73.901199 1 Chinese Restaurant Grocery Store Pizza Place Bus Station Deli / Bodega Discount Store Caribbean Restaurant Liquor Store Bakery Gym
268 Bronx Concourse Village 40.824780 -73.915847 1 Fast Food Restaurant Sandwich Place Sporting Goods Shop Mexican Restaurant Bus Station Deli / Bodega Pharmacy Southern / Soul Food Restaurant Supermarket Supplement Shop
269 Bronx Mount Eden 40.843826 -73.916556 1 Supermarket Spanish Restaurant Pharmacy Pizza Place Deli / Bodega Fried Chicken Joint Fast Food Restaurant Chinese Restaurant Clothing Store Bar
270 Bronx Mount Hope 40.848842 -73.908299 1 Grocery Store Sandwich Place Asian Restaurant Donut Shop Metro Station Deli / Bodega Supermarket Ice Cream Shop Spanish Restaurant Video Game Store
271 Manhattan Sutton Place 40.760280 -73.963556 1 Gym / Fitness Center Italian Restaurant Furniture / Home Store Coffee Shop Indian Restaurant American Restaurant Gym Beer Garden Cupcake Shop Bakery
272 Queens Hunters Point 40.743414 -73.953868 1 Italian Restaurant Café Japanese Restaurant Brewery Thai Restaurant Deli / Bodega Gym / Fitness Center Burger Joint Coffee Shop American Restaurant
273 Manhattan Turtle Bay 40.752042 -73.967708 1 Italian Restaurant Steakhouse Sushi Restaurant Coffee Shop Wine Bar Japanese Restaurant Indian Restaurant Ramen Restaurant Park French Restaurant
274 Manhattan Tudor City 40.746917 -73.971219 1 Café Mexican Restaurant Park Pizza Place Greek Restaurant Deli / Bodega Restaurant Thai Restaurant Gym Diner
275 Manhattan Stuyvesant Town 40.731000 -73.974052 1 Boat or Ferry Park Bar Baseball Field Cocktail Bar Harbor / Marina Gym / Fitness Center Playground German Restaurant Coffee Shop
276 Manhattan Flatiron 40.739673 -73.990947 1 Japanese Restaurant Spa American Restaurant Café Clothing Store Gym / Fitness Center New American Restaurant Yoga Studio Cycle Studio Salon / Barbershop
277 Queens Sunnyside Gardens 40.745652 -73.918193 1 Bar Grocery Store Pizza Place Korean Restaurant American Restaurant Coffee Shop Bank Turkish Restaurant Thai Restaurant Pharmacy
278 Queens Blissville 40.737251 -73.932442 1 Deli / Bodega Donut Shop Hotel Rental Service Art Gallery Sporting Goods Shop Cafeteria Movie Theater Skating Rink Mattress Store
279 Brooklyn Fulton Ferry 40.703281 -73.995508 1 Park American Restaurant Scenic Lookout Bakery Playground Pizza Place Café Coffee Shop Ice Cream Shop Burger Joint
280 Brooklyn Vinegar Hill 40.703321 -73.981116 1 Food Truck Art Gallery Wine Shop Coffee Shop Café Music Venue Factory Scenic Lookout Bike Rental / Bike Share Bar
281 Brooklyn Weeksville 40.675040 -73.930531 1 Discount Store Café Grocery Store Liquor Store Donut Shop Lounge Plaza Gas Station Cocktail Bar Juice Bar
282 Brooklyn Broadway Junction 40.677861 -73.903317 1 Fried Chicken Joint Donut Shop Diner Gas Station Pizza Place Sandwich Place Caribbean Restaurant Discount Store Ice Cream Shop Bus Stop
283 Brooklyn Dumbo 40.703176 -73.988753 1 Coffee Shop Café Park Scenic Lookout Bakery Japanese Restaurant American Restaurant Art Gallery Bookstore Boxing Gym
284 Staten Island Manor Heights 40.601810 -74.120594 1 Donut Shop Deli / Bodega American Restaurant Campground Liquor Store Food Sushi Restaurant Chinese Restaurant Pharmacy Filipino Restaurant
285 Staten Island Willowbrook 40.603707 -74.132084 0 Bus Stop Intersection Bagel Shop Deli / Bodega Spa Pizza Place Women's Store Filipino Restaurant Event Space Exhibit
286 Staten Island Sandy Ground 40.541140 -74.217766 1 Bus Stop Fish & Chips Shop Racetrack Greek Restaurant Art Gallery Market Playground Food Truck Intersection Exhibit
287 Staten Island Egbertville 40.579119 -74.127272 1 Clothing Store Italian Restaurant Bagel Shop Cosmetics Shop Construction & Landscaping Financial or Legal Service Event Service Event Space Exhibit Factory
288 Queens Roxbury 40.567376 -73.892138 1 Irish Pub Beach Deli / Bodega Trail Fast Food Restaurant Baseball Field Women's Store Financial or Legal Service Event Space Exhibit
289 Brooklyn Homecrest 40.598525 -73.959185 1 Bank Donut Shop Sandwich Place Grocery Store Chinese Restaurant Pizza Place Mexican Restaurant Fast Food Restaurant Sushi Restaurant Tattoo Parlor
290 Queens Middle Village 40.716415 -73.881143 1 Japanese Restaurant Diner Martial Arts Dojo Bank Bakery Sandwich Place South American Restaurant Pizza Place Playground Discount Store
291 Staten Island Prince's Bay 40.526264 -74.201526 1 Pizza Place Italian Restaurant Sushi Restaurant Bank Pet Store Bagel Shop Pharmacy Ice Cream Shop Tanning Salon Food Truck
292 Staten Island Lighthouse Hill 40.576506 -74.137927 1 Italian Restaurant Trail Spa Café Art Museum Financial or Legal Service Event Space Exhibit Factory Falafel Restaurant
293 Staten Island Richmond Valley 40.519541 -74.229571 1 Bank Fast Food Restaurant Sandwich Place Food Mexican Restaurant Coffee Shop Train Station Bubble Tea Shop Deli / Bodega Convenience Store
294 Queens Malba 40.790602 -73.826678 1 Rest Area Tennis Court Women's Store Financial or Legal Service Event Service Event Space Exhibit Factory Falafel Restaurant Farm
295 Brooklyn Highland Park 40.681999 -73.890346 1 Spanish Restaurant Pizza Place Liquor Store Garden Latin American Restaurant Park Fried Chicken Joint Gym / Fitness Center Cosmetics Shop Food
296 Brooklyn Madison 40.609378 -73.948415 1 Bagel Shop Pilates Studio Italian Restaurant Pizza Place Deli / Bodega Bus Station Restaurant Candy Store Dessert Shop Hobby Shop
297 Bronx Bronxdale 40.852723 -73.861726 1 Italian Restaurant Spanish Restaurant Chinese Restaurant Bank Paper / Office Supplies Store Gym Mexican Restaurant Eastern European Restaurant Pizza Place Performing Arts Venue
298 Bronx Allerton 40.865788 -73.859319 1 Pizza Place Supermarket Chinese Restaurant Deli / Bodega Bus Station Spanish Restaurant Breakfast Spot Martial Arts Dojo Fast Food Restaurant Pharmacy
299 Bronx Kingsbridge Heights 40.870392 -73.901523 1 Pizza Place Coffee Shop Deli / Bodega Food Truck Fried Chicken Joint Mexican Restaurant Park High School Sandwich Place Baseball Field
300 Brooklyn Erasmus 40.646926 -73.948177 1 Caribbean Restaurant Yoga Studio Furniture / Home Store Grocery Store Chinese Restaurant Mobile Phone Shop Pharmacy Bank Health Food Store School
301 Manhattan Hudson Yards 40.756658 -74.000111 1 American Restaurant Hotel Italian Restaurant Café Gym / Fitness Center Thai Restaurant Dog Run Boat or Ferry Park Spanish Restaurant
302 Queens Hammels 40.587338 -73.805530 1 Beach Southern / Soul Food Restaurant Shoe Store Gym / Fitness Center Dog Run Fast Food Restaurant Café Diner Bus Stop Bus Station
303 Queens Bayswater 40.611322 -73.765968 3 Park Playground Women's Store Filipino Restaurant Event Service Event Space Exhibit Factory Falafel Restaurant Farm
304 Queens Queensbridge 40.756091 -73.945631 1 Hotel Baseball Field Hotel Bar Performing Arts Venue Basketball Court Beer Garden Park Scenic Lookout Sandwich Place Roof Deck
305 Staten Island Fox Hills 40.617311 -74.081740 0 Bus Stop Playground Bus Station Sandwich Place Bar Deli / Bodega Food Truck Financial or Legal Service Event Space Exhibit

Finally, let's visualize the resulting clusters

In [96]:
# create map
map_clusters = folium.Map(location=[latitude, longitude], zoom_start=11)

# set color scheme for the clusters
x = np.arange(kclusters)
ys = [i + x + (i*x)**2 for i in range(kclusters)]
colors_array = cm.rainbow(np.linspace(0, 1, len(ys)))
rainbow = [colors.rgb2hex(i) for i in colors_array]

# add markers to the map
markers_colors = []
for lat, lon, poi, cluster in zip(newyork_merged['Latitude'], newyork_merged['Longitude'], newyork_merged['Neighborhood'], newyork_merged['Cluster Labels']):
    label = folium.Popup(str(poi) + ' Cluster ' + str(cluster), parse_html=True)
    folium.CircleMarker(
        [lat, lon],
        radius=5,
        popup=label,
        color=rainbow[cluster-1],
        fill=True,
        fill_color=rainbow[cluster-1],
        fill_opacity=0.7).add_to(map_clusters)
       
map_clusters
Out[96]:

Now lets Examine the Clusters

Now, we can examine each cluster to determine the discriminating venue categories that distinguish each cluster. Based on the defining categories, we can then assign a name to each cluster.

In [ ]:
#### Cluster 1
In [104]:
newyork_merged.loc[newyork_merged['Cluster Labels'] == 0, newyork_merged.columns[[1] + list(range(5, newyork_merged.shape[1]))]]
Out[104]:
Neighborhood 1st Most Common Venue 2nd Most Common Venue 3rd Most Common Venue 4th Most Common Venue 5th Most Common Venue 6th Most Common Venue 7th Most Common Venue 8th Most Common Venue 9th Most Common Venue 10th Most Common Venue
150 Whitestone Bubble Tea Shop Dance Studio Deli / Bodega Candy Store Fish Market Exhibit Factory Falafel Restaurant Farm Farmers Market
193 Brookville Deli / Bodega Women's Store Fish & Chips Shop Event Service Event Space Exhibit Factory Falafel Restaurant Farm Farmers Market
198 New Brighton Bus Stop Deli / Bodega Park Bowling Alley Discount Store Playground Women's Store Fish & Chips Shop Factory Falafel Restaurant
202 Grymes Hill Bus Stop Dog Run Women's Store Fish & Chips Shop Event Space Exhibit Factory Falafel Restaurant Farm Farmers Market
204 South Beach Beach Pier Deli / Bodega Bus Stop Athletics & Sports Women's Store Financial or Legal Service Exhibit Factory Falafel Restaurant
206 Mariner's Harbor Italian Restaurant Deli / Bodega Bus Stop Athletics & Sports Women's Store Fish & Chips Shop Event Space Exhibit Factory Falafel Restaurant
224 Park Hill Bus Stop Athletics & Sports Coffee Shop Gym / Fitness Center Hotel Women's Store Filipino Restaurant Event Space Exhibit Factory
227 Arlington Deli / Bodega Grocery Store Scenic Lookout Playground Women's Store Field Event Service Event Space Exhibit Factory
241 Arden Heights Pharmacy Deli / Bodega Bus Stop Coffee Shop Pizza Place Women's Store Filipino Restaurant Event Space Exhibit Factory
256 Randall Manor Bus Stop Bagel Shop Deli / Bodega Park Women's Store Financial or Legal Service Event Space Exhibit Factory Falafel Restaurant
258 Elm Park Bus Stop Deli / Bodega Italian Restaurant Pizza Place Cosmetics Shop American Restaurant Ice Cream Shop Field Fast Food Restaurant Farmers Market
285 Willowbrook Bus Stop Intersection Bagel Shop Deli / Bodega Spa Pizza Place Women's Store Filipino Restaurant Event Space Exhibit
305 Fox Hills Bus Stop Playground Bus Station Sandwich Place Bar Deli / Bodega Food Truck Financial or Legal Service Event Space Exhibit
In [ ]:
#### Cluster 2
In [105]:
newyork_merged.loc[newyork_merged['Cluster Labels'] == 1, newyork_merged.columns[[1] + list(range(5, newyork_merged.shape[1]))]]
Out[105]:
Neighborhood 1st Most Common Venue 2nd Most Common Venue 3rd Most Common Venue 4th Most Common Venue 5th Most Common Venue 6th Most Common Venue 7th Most Common Venue 8th Most Common Venue 9th Most Common Venue 10th Most Common Venue
0 Wakefield Dessert Shop Pharmacy Donut Shop Laundromat Gas Station Sandwich Place Ice Cream Shop Caribbean Restaurant Farm Fast Food Restaurant
1 Co-op City Bus Station Baseball Field Discount Store Chinese Restaurant Park Pharmacy Bagel Shop Grocery Store Fast Food Restaurant Gift Shop
2 Eastchester Caribbean Restaurant Deli / Bodega Bus Station Diner Bowling Alley Metro Station Chinese Restaurant Bakery Fast Food Restaurant Seafood Restaurant
3 Fieldston Plaza River Bus Station Women's Store Event Service Event Space Exhibit Factory Falafel Restaurant Farm
4 Riverdale Park Bus Station Playground Plaza Bank Gym Home Service Baseball Field Food Truck Flower Shop
5 Kingsbridge Pizza Place Bakery Bar Latin American Restaurant Mexican Restaurant Sandwich Place Supermarket Fried Chicken Joint Spanish Restaurant Donut Shop
6 Marble Hill Sandwich Place Coffee Shop Yoga Studio Kids Store Big Box Store Shopping Mall Gym Miscellaneous Shop Seafood Restaurant Clothing Store
7 Woodlawn Deli / Bodega Pizza Place Playground Rental Car Location Plaza Supermarket Park Food Truck Bakery Pharmacy
8 Norwood Park Pizza Place Bank Deli / Bodega American Restaurant Pharmacy Mexican Restaurant Coffee Shop Pet Store Sandwich Place
9 Williamsbridge Nightclub Caribbean Restaurant Soup Place Bar Financial or Legal Service Event Space Exhibit Factory Falafel Restaurant Farm
10 Baychester Donut Shop Gym / Fitness Center Discount Store Sandwich Place Bank Fast Food Restaurant Electronics Store Bus Station Pizza Place Supermarket
11 Pelham Parkway Frozen Yogurt Shop Pizza Place Italian Restaurant Bus Station Chinese Restaurant Performing Arts Venue Metro Station Coffee Shop Bank Bakery
12 City Island Harbor / Marina Seafood Restaurant Thrift / Vintage Store French Restaurant Art Gallery Baseball Field Bar Bank Boat or Ferry Smoke Shop
13 Bedford Park Pizza Place Diner Deli / Bodega Supermarket Mexican Restaurant Chinese Restaurant Sandwich Place Coffee Shop Bakery Bar
14 University Heights Pizza Place Bus Station Sandwich Place Fast Food Restaurant Donut Shop Bakery Latin American Restaurant Bank Pharmacy Supermarket
15 Morris Heights IT Services Recreation Center Bus Station Bank Pharmacy Latin American Restaurant Pizza Place Spanish Restaurant Grocery Store Falafel Restaurant
16 Fordham Mobile Phone Shop Fast Food Restaurant Shoe Store Gym / Fitness Center Spanish Restaurant Bank Donut Shop Pharmacy Supplement Shop Pizza Place
17 East Tremont Pizza Place Shoe Store Cosmetics Shop Spanish Restaurant Discount Store Fast Food Restaurant Donut Shop Lounge Café Bank
18 West Farms Bus Station Donut Shop Metro Station Sandwich Place Scenic Lookout Latin American Restaurant Lounge Bank Playground Coffee Shop
19 High Bridge Pharmacy Supermarket Pizza Place Chinese Restaurant Bus Station Deli / Bodega Seafood Restaurant Sandwich Place Market Asian Restaurant
20 Melrose Pharmacy Pizza Place Sandwich Place Gym / Fitness Center Supermarket Martial Arts Dojo Supplement Shop Chinese Restaurant Mexican Restaurant Paper / Office Supplies Store
21 Mott Haven Spanish Restaurant Gym Donut Shop Pizza Place Storage Facility Latin American Restaurant Fish & Chips Shop Mobile Phone Shop Grocery Store Peruvian Restaurant
22 Port Morris Storage Facility Distillery Cupcake Shop Music Venue Brewery Furniture / Home Store Spanish Restaurant Grocery Store Paper / Office Supplies Store Donut Shop
23 Longwood Sandwich Place Fast Food Restaurant Grocery Store Donut Shop Diner Latin American Restaurant Women's Store Event Space Exhibit Factory
24 Hunts Point Restaurant Spanish Restaurant Farmers Market Grocery Store BBQ Joint Café Gourmet Shop Pizza Place Waste Facility Juice Bar
25 Morrisania Discount Store Bus Station Fast Food Restaurant Chinese Restaurant Donut Shop Pharmacy Latin American Restaurant Seafood Restaurant Bowling Alley Fish Market
26 Soundview Chinese Restaurant Grocery Store Fried Chicken Joint Video Store Health & Beauty Service Burger Joint Pharmacy Latin American Restaurant Playground Basketball Court
28 Throgs Neck Deli / Bodega Bar American Restaurant Coffee Shop Pizza Place Sports Bar Asian Restaurant Italian Restaurant Juice Bar Financial or Legal Service
29 Country Club Sandwich Place Chinese Restaurant Flea Market Comic Shop Athletics & Sports Playground Women's Store Event Space Exhibit Factory
30 Parkchester Supermarket Women's Store Pizza Place Kids Store Bank American Restaurant Mattress Store Shipping Store Chinese Restaurant Mexican Restaurant
31 Westchester Square Fast Food Restaurant Indie Theater Sandwich Place Pharmacy Pizza Place Donut Shop Bus Line Asian Restaurant Gym Mexican Restaurant
32 Van Nest Deli / Bodega Pizza Place Board Shop Chinese Restaurant Bus Station Hookah Bar Caribbean Restaurant Middle Eastern Restaurant Supermarket Spa
33 Morris Park Pizza Place Burger Joint Deli / Bodega Bakery Buffet Supermarket Bar Bank Pharmacy Sandwich Place
34 Belmont Italian Restaurant Pizza Place Deli / Bodega Bakery Donut Shop Dessert Shop Bank Spanish Restaurant Fish Market Bar
35 Spuyten Duyvil Park Food Pharmacy Tennis Court Tennis Stadium Thai Restaurant Asian Restaurant Bank Bus Line Intersection
36 North Riverdale Pizza Place Italian Restaurant Bank Bus Station Moving Target Grocery Store Mexican Restaurant Coffee Shop Bagel Shop Sandwich Place
37 Pelham Bay Italian Restaurant Bank Donut Shop Convenience Store Deli / Bodega Gym / Fitness Center Fast Food Restaurant Sandwich Place BBQ Joint Bagel Shop
38 Schuylerville Pharmacy Pizza Place Mexican Restaurant Bar Bank American Restaurant Supermarket Fast Food Restaurant Hobby Shop Sandwich Place
39 Edgewater Park Italian Restaurant Deli / Bodega Donut Shop Pizza Place Asian Restaurant Sports Bar Food & Drink Shop Park Bar Liquor Store
40 Castle Hill Pharmacy Market Spanish Restaurant Diner Park Pizza Place Bank Deli / Bodega Baseball Field Field
41 Olinville Caribbean Restaurant Fried Chicken Joint Convenience Store Metro Station Mexican Restaurant Laundromat Food Basketball Court Supermarket Food Court
42 Pelham Gardens Bus Station Pharmacy Donut Shop Pizza Place Italian Restaurant Construction & Landscaping Spanish Restaurant Boat or Ferry Grocery Store Chinese Restaurant
43 Concourse Deli / Bodega Bakery Spanish Restaurant Grocery Store Bus Station Art Gallery Sandwich Place Liquor Store Donut Shop Supermarket
44 Unionport Donut Shop Ice Cream Shop Latin American Restaurant Seafood Restaurant Lounge Sandwich Place Pizza Place Caribbean Restaurant Comfort Food Restaurant Discount Store
45 Edenwald Supermarket Gas Station Grocery Store Fish Market Gift Shop Pizza Place Women's Store Filipino Restaurant Event Space Exhibit
46 Bay Ridge Italian Restaurant Spa Greek Restaurant Pizza Place American Restaurant Pharmacy Bar Playground Hookah Bar Ice Cream Shop
47 Bensonhurst Italian Restaurant Sushi Restaurant Donut Shop Ice Cream Shop Pizza Place Chinese Restaurant Factory Bakery Liquor Store Cha Chaan Teng
48 Sunset Park Latin American Restaurant Pizza Place Mexican Restaurant Bank Bakery Deli / Bodega Pharmacy Fried Chicken Joint Mobile Phone Shop Gym
49 Greenpoint Bar Pizza Place Coffee Shop Cocktail Bar Yoga Studio Grocery Store Record Shop Sushi Restaurant Boutique Mexican Restaurant
50 Gravesend Pizza Place Bakery Italian Restaurant Lounge Bus Station Metro Station Bar Pharmacy Eastern European Restaurant Breakfast Spot
51 Brighton Beach Russian Restaurant Restaurant Eastern European Restaurant Beach Fast Food Restaurant Mobile Phone Shop Bank Pharmacy Gourmet Shop Sushi Restaurant
52 Sheepshead Bay Turkish Restaurant Dessert Shop Sandwich Place Yoga Studio Italian Restaurant Karaoke Bar Grocery Store Miscellaneous Shop Outlet Store Pizza Place
53 Manhattan Terrace Pizza Place Donut Shop Coffee Shop Ice Cream Shop Bakery Japanese Restaurant Laundromat Cosmetics Shop Convenience Store Organic Grocery
54 Flatbush Coffee Shop Caribbean Restaurant Pharmacy Mexican Restaurant Donut Shop Pizza Place Bagel Shop Plaza Bank Lounge
55 Crown Heights Pizza Place Café Museum Convenience Store Bagel Shop Salon / Barbershop Candy Store Bookstore Bakery Coffee Shop
56 East Flatbush Hardware Store Print Shop Caribbean Restaurant Pharmacy Moving Target Fast Food Restaurant Supermarket Food & Drink Shop Department Store Park
57 Kensington Grocery Store Thai Restaurant Ice Cream Shop Pizza Place Pharmacy Sandwich Place Japanese Restaurant Spa Mexican Restaurant Gas Station
58 Windsor Terrace Café Diner Grocery Store Plaza Park Italian Restaurant Bagel Shop Butcher Deli / Bodega Sushi Restaurant
59 Prospect Heights Bar Café Wine Shop Mexican Restaurant Thai Restaurant Cocktail Bar Pizza Place Gourmet Shop New American Restaurant Diner
60 Brownsville Restaurant Chinese Restaurant Park Playground Pharmacy Farmers Market Caribbean Restaurant Burger Joint Performing Arts Venue Spanish Restaurant
61 Williamsburg Bar Coffee Shop Bagel Shop Pizza Place Japanese Restaurant Gym Steakhouse Pet Store Park Middle Eastern Restaurant
62 Bushwick Bar Coffee Shop Deli / Bodega Mexican Restaurant Pizza Place Thrift / Vintage Store Discount Store Bakery Chinese Restaurant Italian Restaurant
63 Bedford Stuyvesant Pizza Place Café Deli / Bodega Bar Coffee Shop Japanese Restaurant Fried Chicken Joint Boutique Gourmet Shop Park
64 Brooklyn Heights Yoga Studio Deli / Bodega Park Bakery Gym Italian Restaurant Cosmetics Shop Thai Restaurant Grocery Store American Restaurant
65 Cobble Hill Playground Bar Pizza Place Coffee Shop Yoga Studio Cocktail Bar Deli / Bodega Ice Cream Shop Italian Restaurant Mediterranean Restaurant
66 Carroll Gardens Italian Restaurant Pizza Place Coffee Shop Bakery Cocktail Bar Wine Shop Bar Spa Gym / Fitness Center Gourmet Shop
67 Red Hook Seafood Restaurant Art Gallery Park American Restaurant Bar Bagel Shop Farm Flower Shop New American Restaurant Ice Cream Shop
68 Gowanus Italian Restaurant Bar Deli / Bodega Furniture / Home Store Gym / Fitness Center Pizza Place Coffee Shop Art Gallery Breakfast Spot Mexican Restaurant
69 Fort Greene Italian Restaurant Coffee Shop Flower Shop Theater Opera House French Restaurant Cocktail Bar New American Restaurant Yoga Studio Pizza Place
70 Park Slope Coffee Shop American Restaurant Burger Joint Italian Restaurant Pizza Place Japanese Restaurant Pet Store Chinese Restaurant Spa Bookstore
71 Cypress Hills Fried Chicken Joint Chinese Restaurant Latin American Restaurant Ice Cream Shop Fast Food Restaurant Donut Shop Pizza Place Metro Station Mexican Restaurant Seafood Restaurant
72 East New York Fast Food Restaurant Bus Station Event Service Convenience Store Pizza Place Salon / Barbershop Latin American Restaurant Plaza Gym Metro Station
73 Starrett City Shopping Mall American Restaurant Donut Shop Pizza Place Caribbean Restaurant Pharmacy Moving Target Convenience Store Bus Stop Supermarket
74 Canarsie Thai Restaurant Caribbean Restaurant Gym IT Services Asian Restaurant Women's Store Filipino Restaurant Event Space Exhibit Factory
75 Flatlands Pharmacy Fried Chicken Joint Fast Food Restaurant Caribbean Restaurant Athletics & Sports Paper / Office Supplies Store Chinese Restaurant Park Lounge Electronics Store
77 Manhattan Beach Café Pizza Place Playground Beach Bus Stop Food Sandwich Place Ice Cream Shop Field Fast Food Restaurant
78 Coney Island Baseball Stadium Caribbean Restaurant Monument / Landmark Theme Park Ride / Attraction Beach Skating Rink Pharmacy Athletics & Sports Park Pizza Place
79 Bath Beach Chinese Restaurant Pharmacy Sushi Restaurant Italian Restaurant Bubble Tea Shop Donut Shop Fast Food Restaurant Women's Store Clothing Store Surf Spot
80 Borough Park Bank Deli / Bodega Pizza Place Café Pharmacy Japanese Restaurant Hotel Breakfast Spot Fast Food Restaurant Men's Store
81 Dyker Heights Playground Bagel Shop Golf Course Plaza Grocery Store School Cosmetics Shop Burger Joint Dance Studio Exhibit
82 Gerritsen Beach Pizza Place Ice Cream Shop Bar Skating Rink Bagel Shop Liquor Store Boat or Ferry Gas Station Convenience Store Seafood Restaurant
83 Marine Park Pizza Place Baseball Field Basketball Court Deli / Bodega Soccer Field Chinese Restaurant Athletics & Sports Gym Ice Cream Shop Farmers Market
84 Clinton Hill Italian Restaurant Pizza Place Wine Shop Mexican Restaurant Japanese Restaurant Thai Restaurant Deli / Bodega Indian Restaurant Restaurant Yoga Studio
85 Sea Gate Beach Bus Station Spa Home Service Video Store IT Services Women's Store Filipino Restaurant Event Space Exhibit
86 Downtown Coffee Shop Burger Joint Chinese Restaurant Sandwich Place Bar Martial Arts Dojo Middle Eastern Restaurant Cocktail Bar Performing Arts Venue Caribbean Restaurant
87 Boerum Hill Bar Dance Studio Coffee Shop Furniture / Home Store Sandwich Place Arts & Crafts Store French Restaurant Deli / Bodega Yoga Studio Gym / Fitness Center
88 Prospect Lefferts Gardens Bakery Café Pizza Place Caribbean Restaurant Supermarket Liquor Store Wine Shop Indian Restaurant Ice Cream Shop Deli / Bodega
89 Ocean Hill Grocery Store Deli / Bodega Food Southern / Soul Food Restaurant Bus Stop Fried Chicken Joint Playground Park Mexican Restaurant Seafood Restaurant
90 City Line Donut Shop Shoe Store Pharmacy Grocery Store Mexican Restaurant Chinese Restaurant Mobile Phone Shop Ski Area Coffee Shop Fast Food Restaurant
91 Bergen Beach Harbor / Marina Donut Shop Athletics & Sports Playground Baseball Field Women's Store Field Event Service Event Space Exhibit
92 Midwood Pizza Place Pharmacy Moving Target Field Video Game Store Ice Cream Shop Convenience Store Bagel Shop Bakery Candy Store
93 Prospect Park South Caribbean Restaurant Mobile Phone Shop Pizza Place Pharmacy Grocery Store Fast Food Restaurant Fried Chicken Joint Donut Shop Women's Store Mexican Restaurant
94 Georgetown Bank Donut Shop Breakfast Spot Pharmacy Italian Restaurant Shopping Mall Shipping Store Sandwich Place Pizza Place Pet Store
95 East Williamsburg Bar Bakery Cocktail Bar Coffee Shop Deli / Bodega Concert Hall Music Venue Café Mexican Restaurant Sandwich Place
96 North Side Coffee Shop Pizza Place Bar Yoga Studio Wine Bar American Restaurant Jewelry Store Burger Joint Seafood Restaurant Movie Theater
97 South Side Bar Coffee Shop Pizza Place American Restaurant Yoga Studio Wine Bar Breakfast Spot Chinese Restaurant South American Restaurant Burger Joint
98 Ocean Parkway Liquor Store Pizza Place Bus Stop Supermarket Paper / Office Supplies Store Grocery Store Bus Station Chinese Restaurant Bakery Bagel Shop
99 Fort Hamilton Deli / Bodega Italian Restaurant Bank Gym / Fitness Center Sandwich Place Pizza Place Diner Steakhouse Bus Stop Chinese Restaurant
100 Chinatown Chinese Restaurant Cocktail Bar American Restaurant Bakery Spa Salon / Barbershop Vietnamese Restaurant Optical Shop Dumpling Restaurant Mexican Restaurant
101 Washington Heights Café Grocery Store Bakery Chinese Restaurant Mobile Phone Shop Latin American Restaurant Donut Shop Spanish Restaurant Coffee Shop Mexican Restaurant
102 Inwood Mexican Restaurant Restaurant Café Lounge Pizza Place Bakery Wine Bar Deli / Bodega Park American Restaurant
103 Hamilton Heights Pizza Place Deli / Bodega Coffee Shop Mexican Restaurant Café Liquor Store Indian Restaurant Sushi Restaurant Park Sandwich Place
104 Manhattanville Coffee Shop Park Chinese Restaurant Liquor Store Seafood Restaurant Mexican Restaurant Sushi Restaurant Italian Restaurant Music School Falafel Restaurant
105 Central Harlem Cosmetics Shop French Restaurant African Restaurant Bar American Restaurant Seafood Restaurant Chinese Restaurant Ethiopian Restaurant Bookstore Bagel Shop
106 East Harlem Mexican Restaurant Thai Restaurant Bakery Deli / Bodega Latin American Restaurant French Restaurant Spanish Restaurant Gym Grocery Store Beer Bar
107 Upper East Side Italian Restaurant Exhibit Art Gallery Bakery Juice Bar Gym / Fitness Center Coffee Shop Hotel French Restaurant Vegetarian / Vegan Restaurant
108 Yorkville Italian Restaurant Coffee Shop Gym Bar Deli / Bodega Pizza Place Diner Sushi Restaurant Bakery Japanese Restaurant
109 Lenox Hill Coffee Shop Italian Restaurant Pizza Place Cocktail Bar Sporting Goods Shop Sushi Restaurant Gym / Fitness Center Gym Burger Joint Café
110 Roosevelt Island Coffee Shop Park Sandwich Place Japanese Restaurant Deli / Bodega Bridge Bubble Tea Shop Bus Line Soccer Field School
111 Upper West Side Italian Restaurant Wine Bar Bar Coffee Shop Mediterranean Restaurant Bakery Café Pub Indian Restaurant Ice Cream Shop
112 Lincoln Square Plaza Café Concert Hall Italian Restaurant Theater Performing Arts Venue Gym / Fitness Center French Restaurant Park Indie Movie Theater
113 Clinton Theater Italian Restaurant Gym / Fitness Center Coffee Shop Spa American Restaurant Hotel Sandwich Place Gym Wine Shop
114 Midtown Hotel Sporting Goods Shop Clothing Store Theater Food Truck Coffee Shop Spa Steakhouse Japanese Restaurant Bakery
115 Murray Hill Korean Restaurant Coffee Shop Japanese Restaurant Bar Sandwich Place American Restaurant Pub Gym Italian Restaurant Chinese Restaurant
116 Chelsea Italian Restaurant Coffee Shop Bakery Ice Cream Shop Theater American Restaurant Hotel Seafood Restaurant Nightclub Cocktail Bar
117 Greenwich Village Italian Restaurant Clothing Store Sushi Restaurant Indian Restaurant American Restaurant Café French Restaurant Seafood Restaurant Gourmet Shop Chinese Restaurant
118 East Village Bar Wine Bar Ice Cream Shop Mexican Restaurant Chinese Restaurant Cocktail Bar Pizza Place Coffee Shop Vegetarian / Vegan Restaurant Japanese Restaurant
119 Lower East Side Café Pizza Place Chinese Restaurant Japanese Restaurant Cocktail Bar Ramen Restaurant Coffee Shop Bakery Theater Art Gallery
120 Tribeca Italian Restaurant Park American Restaurant Café Spa Greek Restaurant Wine Shop Wine Bar Coffee Shop Men's Store
121 Little Italy Italian Restaurant Bakery Café Bubble Tea Shop Sandwich Place Clothing Store Cocktail Bar Salon / Barbershop Mediterranean Restaurant Women's Store
122 Soho Clothing Store Boutique Women's Store Art Gallery Shoe Store Men's Store Bakery Sporting Goods Shop Italian Restaurant Mediterranean Restaurant
123 West Village Italian Restaurant New American Restaurant Cosmetics Shop American Restaurant Wine Bar Cocktail Bar Park Jazz Club Gastropub Bakery
124 Manhattan Valley Indian Restaurant Coffee Shop Bar Yoga Studio Café Park Mexican Restaurant Pizza Place Peruvian Restaurant Noodle House
125 Morningside Heights Park Coffee Shop American Restaurant Bookstore Burger Joint Sandwich Place Deli / Bodega Pizza Place Food Truck Pharmacy
126 Gramercy Bar Italian Restaurant Bagel Shop Pizza Place Mexican Restaurant Diner Coffee Shop Cocktail Bar Thai Restaurant American Restaurant
127 Battery Park City Park Coffee Shop Hotel Gym Wine Shop Memorial Site BBQ Joint Shopping Mall Plaza Clothing Store
128 Financial District Coffee Shop American Restaurant Pizza Place Gym Food Truck Hotel Bar Steakhouse Café Gym / Fitness Center
129 Astoria Bar Middle Eastern Restaurant Greek Restaurant Hookah Bar Seafood Restaurant Café Pizza Place Mediterranean Restaurant Bakery Grocery Store
130 Woodside Grocery Store Thai Restaurant Bakery Latin American Restaurant Filipino Restaurant Deli / Bodega Pizza Place Pub American Restaurant Donut Shop
131 Jackson Heights Latin American Restaurant South American Restaurant Peruvian Restaurant Bakery Mobile Phone Shop Thai Restaurant Mexican Restaurant Diner Shoe Store Empanada Restaurant
132 Elmhurst Thai Restaurant Mexican Restaurant South American Restaurant Chinese Restaurant Vietnamese Restaurant Malay Restaurant Pizza Place Seafood Restaurant Food Court Bar
133 Howard Beach Italian Restaurant Pharmacy Bagel Shop Bank Sandwich Place Fast Food Restaurant Gym Shipping Store Clothing Store Spa
134 Corona Mexican Restaurant Park Restaurant Bakery South American Restaurant Pizza Place Latin American Restaurant Playground Supermarket Donut Shop
135 Forest Hills Gym / Fitness Center Gym Yoga Studio Pizza Place Park Thai Restaurant Convenience Store Pharmacy Supplement Shop Farmers Market
136 Kew Gardens Chinese Restaurant Indian Restaurant Donut Shop Bar Park Bank Pizza Place Cosmetics Shop Convenience Store Spa
137 Richmond Hill Bank Caribbean Restaurant Lounge Latin American Restaurant Pizza Place Metro Station Pet Service Taco Place Sandwich Place Donut Shop
138 Flushing Hotpot Restaurant Bubble Tea Shop Chinese Restaurant Korean Restaurant Seafood Restaurant Gym Szechuan Restaurant Bakery Karaoke Bar Asian Restaurant
139 Long Island City Coffee Shop Hotel Bar Mexican Restaurant Pizza Place Café Gym / Fitness Center Donut Shop Deli / Bodega Chinese Restaurant
140 Sunnyside Pizza Place Italian Restaurant Coffee Shop Bakery Chinese Restaurant Discount Store Theater Mexican Restaurant Hotel South American Restaurant
141 East Elmhurst Donut Shop Hotel Bar Gas Station Coffee Shop Lake Ice Cream Shop Supermarket Rental Car Location Exhibit Factory
142 Maspeth Pizza Place Diner Grocery Store Mobile Phone Shop Bank Park Pharmacy Bakery Lounge Japanese Restaurant
143 Ridgewood Eastern European Restaurant Mobile Phone Shop Greek Restaurant Pizza Place Playground Grocery Store Bakery Bank Sandwich Place Pet Store
144 Glendale Arts & Crafts Store Chinese Restaurant Brewery Deli / Bodega Food & Drink Shop Pizza Place Fish & Chips Shop Exhibit Factory Falafel Restaurant
145 Rego Park Bakery Sandwich Place Donut Shop Bagel Shop Sushi Restaurant Restaurant Grocery Store Pharmacy Pizza Place Japanese Restaurant
146 Woodhaven Deli / Bodega Bank Pharmacy Japanese Restaurant Hookah Bar Fried Chicken Joint Supermarket Mexican Restaurant Metro Station Thai Restaurant
147 Ozone Park Pizza Place Pharmacy Bank Diner Gym Event Space Martial Arts Dojo Sandwich Place Fast Food Restaurant Breakfast Spot
148 South Ozone Park Park Deli / Bodega Fast Food Restaurant Bar Hotel Gym / Fitness Center Home Service Donut Shop Sandwich Place Flower Shop
149 College Point Deli / Bodega Chinese Restaurant Pizza Place Latin American Restaurant Asian Restaurant Bar Pharmacy Sandwich Place Bakery Steakhouse
151 Bayside Bar American Restaurant Pizza Place Mexican Restaurant Indian Restaurant Sushi Restaurant Italian Restaurant Bakery Spa Greek Restaurant
152 Auburndale Pet Store Discount Store Mobile Phone Shop Sushi Restaurant Toy / Game Store Hookah Bar Miscellaneous Shop Athletics & Sports Fast Food Restaurant Korean Restaurant
153 Little Neck Chinese Restaurant Deli / Bodega Italian Restaurant Korean Restaurant Bank Coffee Shop Bakery Spa Bus Station Pizza Place
154 Douglaston Bakery Deli / Bodega Bank Donut Shop Convenience Store Liquor Store Lounge Pharmacy Supermarket Korean Restaurant
155 Glen Oaks Pharmacy Bus Station Bakery Sandwich Place Gift Shop Park Fast Food Restaurant Donut Shop Pizza Place Bagel Shop
156 Bellerose Pizza Place Italian Restaurant Chinese Restaurant Wine Shop Gas Station Mobile Phone Shop Salon / Barbershop Donut Shop Motel Seafood Restaurant
157 Kew Gardens Hills Bank Pizza Place Playground Convenience Store Sushi Restaurant Bagel Shop Middle Eastern Restaurant Smoke Shop Restaurant Gift Shop
158 Fresh Meadows Bus Station Chinese Restaurant Pharmacy Train Grocery Store Pizza Place Playground Food Truck Vegetarian / Vegan Restaurant Cosmetics Shop
159 Briarwood Playground Fast Food Restaurant Arts & Crafts Store Deli / Bodega Bus Station Mexican Restaurant Gym Coffee Shop Filipino Restaurant Field
160 Jamaica Center Mobile Phone Shop Sandwich Place Clothing Store Caribbean Restaurant Pizza Place Mexican Restaurant Performing Arts Venue Coffee Shop Fried Chicken Joint Sporting Goods Shop
161 Oakland Gardens Korean Restaurant Yoga Studio Chinese Restaurant Clothing Store Taiwanese Restaurant Coffee Shop Bank Bakery Bagel Shop Sandwich Place
162 Queens Village Bank Salon / Barbershop Sandwich Place Donut Shop Fish Market Mexican Restaurant Discount Store Bakery Fried Chicken Joint Martial Arts Dojo
163 Hollis Baseball Field Park Shopping Mall Sandwich Place Asian Restaurant Fast Food Restaurant Mobile Phone Shop Grocery Store Chinese Restaurant Electronics Store
164 South Jamaica Bus Station Bakery Supermarket Bus Line Caribbean Restaurant Grocery Store Women's Store Financial or Legal Service Factory Falafel Restaurant
165 St. Albans Caribbean Restaurant Fast Food Restaurant Chinese Restaurant Discount Store Motorcycle Shop Donut Shop Café Grocery Store Market Convenience Store
166 Rochdale Market Southern / Soul Food Restaurant Bus Station Bus Stop Laundromat Liquor Store Donut Shop Pizza Place Pharmacy Pet Store
167 Springfield Gardens Fried Chicken Joint Donut Shop Bus Station Shoe Store Chinese Restaurant Park Gym Check Cashing Service Liquor Store Fast Food Restaurant
168 Cambria Heights Caribbean Restaurant Nightclub Moving Target Chinese Restaurant Pharmacy Gym / Fitness Center Restaurant Cosmetics Shop Flower Shop Liquor Store
169 Rosedale Bus Station Baseball Field Sandwich Place Supermarket Caribbean Restaurant Smoke Shop Chinese Restaurant Pharmacy Liquor Store Fried Chicken Joint
170 Far Rockaway Pizza Place Deli / Bodega Grocery Store Chinese Restaurant Fried Chicken Joint Pharmacy Bus Station Bank Fast Food Restaurant Metro Station
171 Broad Channel Dive Bar Deli / Bodega Sporting Goods Shop Other Nightlife Pizza Place Financial or Legal Service Event Space Exhibit Factory Falafel Restaurant
172 Breezy Point Supermarket Trail Beach Bus Stop Monument / Landmark Women's Store Financial or Legal Service Exhibit Factory Falafel Restaurant
173 Steinway Rental Car Location Women's Store Sushi Restaurant Pizza Place Men's Store Italian Restaurant Irish Pub Gym / Fitness Center Donut Shop Dessert Shop
174 Beechhurst Chinese Restaurant Yoga Studio Donut Shop Optical Shop Supermarket Boutique Gym Gym / Fitness Center Pizza Place Health & Beauty Service
175 Bay Terrace Clothing Store Donut Shop Supermarket Italian Restaurant American Restaurant Kids Store Mobile Phone Shop Cosmetics Shop Women's Store Lingerie Store
176 Edgemere Pizza Place Metro Station Gift Shop Farm Bus Station Asian Restaurant Deli / Bodega Park Seafood Restaurant Skate Park
177 Arverne Surf Spot Sandwich Place Metro Station Donut Shop Board Shop Pizza Place Coffee Shop Playground Beach Bus Stop
178 Rockaway Beach Beach Bagel Shop BBQ Joint Ice Cream Shop Pizza Place Food Truck Arepa Restaurant Latin American Restaurant Fast Food Restaurant Poke Place
180 Murray Hill Korean Restaurant Coffee Shop Japanese Restaurant Bar Sandwich Place American Restaurant Pub Gym Italian Restaurant Chinese Restaurant
181 Floral Park Indian Restaurant Basketball Court Salon / Barbershop Dosa Place Pizza Place Grocery Store Event Service Event Space Exhibit Factory
182 Holliswood Supermarket Mobile Phone Shop Donut Shop Playground Women's Store Filipino Restaurant Event Space Exhibit Factory Falafel Restaurant
183 Jamaica Estates Intersection Bus Station Indian Restaurant Women's Store Financial or Legal Service Event Service Event Space Exhibit Factory Falafel Restaurant
184 Queensboro Hill Chinese Restaurant Bank Bakery Intersection Supermarket Shanghai Restaurant Bus Station Bar Bagel Shop Liquor Store
185 Hillcrest Grocery Store Donut Shop Italian Restaurant Pizza Place Food Court Fast Food Restaurant Snack Place Mobile Phone Shop Market Coffee Shop
186 Ravenswood Chinese Restaurant Grocery Store Japanese Restaurant Latin American Restaurant Food Truck Food & Drink Shop Ramen Restaurant Brazilian Restaurant Sushi Restaurant Taco Place
187 Lindenwood Japanese Restaurant Hotel Chinese Restaurant Bank Bakery Gym Liquor Store Pizza Place Donut Shop Playground
188 Laurelton Cosmetics Shop Caribbean Restaurant Train Station Women's Store Filipino Restaurant Event Service Event Space Exhibit Factory Falafel Restaurant
189 Lefrak City Bakery Cosmetics Shop Department Store Fruit & Vegetable Store Mexican Restaurant Sandwich Place BBQ Joint Bank Liquor Store Shopping Mall
190 Belle Harbor Beach Deli / Bodega Pub Spa Bakery Pharmacy Italian Restaurant Chinese Restaurant Mexican Restaurant Donut Shop
191 Rockaway Park Beach Pizza Place Donut Shop Bank Yoga Studio Automotive Shop Deli / Bodega Diner Sandwich Place Pharmacy
194 Bellaire Chinese Restaurant Convenience Store Halal Restaurant Gym Coffee Shop Greek Restaurant Moving Target Diner Italian Restaurant Bus Station
195 North Corona Deli / Bodega Spanish Restaurant Gym / Fitness Center Pizza Place Bakery Hotel Caribbean Restaurant Mobile Phone Shop Gym Mexican Restaurant
196 Forest Hills Gardens Bakery Food & Drink Shop Playground Tapas Restaurant Bagel Shop Mexican Restaurant Pharmacy Sandwich Place Donut Shop Grocery Store
197 St. George Clothing Store Italian Restaurant American Restaurant Sporting Goods Shop Bar Snack Place Monument / Landmark Coffee Shop Tourist Information Center Toy / Game Store
199 Stapleton Pizza Place Mexican Restaurant Sandwich Place Café Discount Store Bank Restaurant Donut Shop Motorcycle Shop Beer Bar
200 Rosebank Grocery Store Italian Restaurant Pharmacy Discount Store Mexican Restaurant Beach Bar Bagel Shop Sandwich Place Filipino Restaurant
201 West Brighton Coffee Shop Deli / Bodega Pharmacy Music Store Bank Bar Italian Restaurant Piercing Parlor Breakfast Spot Liquor Store
205 Port Richmond Rental Car Location Basketball Court Food Donut Shop Financial or Legal Service Event Space Exhibit Factory Falafel Restaurant Farm
208 Castleton Corners Pizza Place Ice Cream Shop Sandwich Place Tattoo Parlor Mini Golf Grocery Store Bagel Shop Japanese Restaurant Indian Restaurant Bank
209 New Springville Coffee Shop Health & Beauty Service Pizza Place Chinese Restaurant Deli / Bodega Mexican Restaurant Spa Ice Cream Shop Donut Shop Restaurant
210 Travis Hotel Bowling Alley Deli / Bodega Park Gym / Fitness Center Gym Home Service Donut Shop Comedy Club Café
211 New Dorp Pizza Place Italian Restaurant Coffee Shop Chinese Restaurant Mexican Restaurant Taco Place Sandwich Place Bank Bakery Bagel Shop
213 Great Kills Bar Pizza Place Italian Restaurant Japanese Restaurant Grocery Store Pharmacy Liquor Store Mexican Restaurant Bakery Bank
214 Eltingville Pizza Place Sushi Restaurant Diner Fast Food Restaurant Pharmacy Bank Italian Restaurant Gourmet Shop Gastropub Bakery
215 Annadale Pizza Place Bakery Park Diner Pub Train Station American Restaurant Restaurant Sports Bar Sushi Restaurant
216 Woodrow Pharmacy Coffee Shop Cosmetics Shop Bagel Shop Sushi Restaurant Bakery Bank Pizza Place Donut Shop Miscellaneous Shop
217 Tottenville Thrift / Vintage Store Deli / Bodega Home Service Miscellaneous Shop Bus Stop Mexican Restaurant Cosmetics Shop Italian Restaurant Factory Filipino Restaurant
218 Tompkinsville Thrift / Vintage Store Café Brewery Park Pizza Place Rock Club Supermarket Caribbean Restaurant Gastropub Mexican Restaurant
219 Silver Lake Burger Joint American Restaurant Golf Course Women's Store Fish & Chips Shop Event Space Exhibit Factory Falafel Restaurant Farm
220 Sunnyside Pizza Place Italian Restaurant Coffee Shop Bakery Chinese Restaurant Discount Store Theater Mexican Restaurant Hotel South American Restaurant
221 Ditmas Park Women's Store Pizza Place Donut Shop Caribbean Restaurant Pharmacy Chinese Restaurant Burger Joint Ramen Restaurant Salon / Barbershop Sandwich Place
222 Wingate Fast Food Restaurant Pharmacy Discount Store Bus Station Flower Shop Fish & Chips Shop Field Gym / Fitness Center Hardware Store Nightclub
223 Rugby Grocery Store Bank Caribbean Restaurant Supermarket Fried Chicken Joint Pizza Place Pharmacy Seafood Restaurant Mobile Phone Shop Sandwich Place
225 Westerleigh Convenience Store Arcade Women's Store Fish & Chips Shop Event Service Event Space Exhibit Factory Falafel Restaurant Farm
226 Graniteville Supermarket Food Truck Boat or Ferry Women's Store Fish & Chips Shop Event Space Exhibit Factory Falafel Restaurant Farm
228 Arrochar Italian Restaurant Deli / Bodega Bus Stop Food Truck Supermarket Middle Eastern Restaurant Liquor Store Outdoors & Recreation Bagel Shop Sandwich Place
229 Grasmere Bus Stop Grocery Store Bank Bakery Japanese Restaurant Vegetarian / Vegan Restaurant Ice Cream Shop Nail Salon Park Pharmacy
230 Old Town Italian Restaurant Pharmacy Restaurant Donut Shop Pizza Place Middle Eastern Restaurant Mattress Store Bakery Grocery Store Liquor Store
231 Dongan Hills Pharmacy Italian Restaurant Deli / Bodega Bagel Shop Pizza Place Convenience Store Train Station Fast Food Restaurant Sushi Restaurant Bank
232 Midland Beach Beach Deli / Bodega Basketball Court Bookstore Baseball Field Bus Stop Dessert Shop Restaurant Chinese Restaurant Pet Store
233 Grant City Pizza Place Bus Stop Convenience Store Health & Beauty Service Mexican Restaurant Pharmacy Bar Event Space Grocery Store Fast Food Restaurant
234 New Dorp Beach Italian Restaurant Deli / Bodega Women's Store Restaurant Skating Rink Diner Food Scenic Lookout Sports Bar Beach
235 Bay Terrace Clothing Store Donut Shop Supermarket Italian Restaurant American Restaurant Kids Store Mobile Phone Shop Cosmetics Shop Women's Store Lingerie Store
236 Huguenot Bank Italian Restaurant Donut Shop Ice Cream Shop Sandwich Place Asian Restaurant Deli / Bodega Bridal Shop Factory Exhibit
237 Pleasant Plains Donut Shop Pizza Place Rental Car Location Discount Store Bus Stop Food Fast Food Restaurant Bank Dry Cleaner Liquor Store
238 Butler Manor Baseball Field Pool Convenience Store Bus Stop Financial or Legal Service Event Service Event Space Exhibit Factory Falafel Restaurant
239 Charleston Big Box Store Cosmetics Shop Women's Store Furniture / Home Store Sporting Goods Shop Shoe Store Pizza Place Pet Store Music Venue Mobile Phone Shop
240 Rossville Pizza Place Bagel Shop Convenience Store Moving Target Chinese Restaurant Deli / Bodega Dry Cleaner Liquor Store American Restaurant Grocery Store
242 Greenridge Lawyer Bagel Shop Construction & Landscaping Diner Pizza Place Women's Store Event Space Exhibit Factory Falafel Restaurant
243 Heartland Village Coffee Shop Donut Shop Spa Accessories Store Food Truck Health & Beauty Service Pharmacy Restaurant Pizza Place Farmers Market
244 Chelsea Italian Restaurant Coffee Shop Bakery Ice Cream Shop Theater American Restaurant Hotel Seafood Restaurant Nightclub Cocktail Bar
245 Bloomfield Recreation Center Park Theme Park Bus Stop Discount Store Filipino Restaurant Event Space Exhibit Factory Falafel Restaurant
246 Bulls Head Bus Stop Pizza Place Pharmacy Deli / Bodega Chinese Restaurant Thai Restaurant Baseball Field Liquor Store Coffee Shop Sandwich Place
247 Carnegie Hill Coffee Shop Pizza Place Café Cosmetics Shop Japanese Restaurant Bakery Bar Bookstore French Restaurant Grocery Store
248 Noho Italian Restaurant French Restaurant Cocktail Bar Pizza Place Coffee Shop Grocery Store Mexican Restaurant Art Gallery Rock Club Boutique
249 Civic Center Gym / Fitness Center Italian Restaurant Hotel French Restaurant Coffee Shop Yoga Studio Spa Bakery American Restaurant Park
250 Midtown South Korean Restaurant Hotel Japanese Restaurant Dessert Shop Hotel Bar American Restaurant Cocktail Bar Coffee Shop Cosmetics Shop Salad Place
251 Richmond Town Italian Restaurant Bagel Shop History Museum Spa Café Financial or Legal Service Event Space Exhibit Factory Falafel Restaurant
252 Shore Acres Italian Restaurant Deli / Bodega Bus Stop Intersection Bar Bagel Shop Gastropub Furniture / Home Store Music Store Nail Salon
253 Clifton Grocery Store Mexican Restaurant Pizza Place Train Station Intersection Taco Place Storage Facility American Restaurant Museum Bus Stop
254 Concord Athletics & Sports Chinese Restaurant Deli / Bodega Supermarket Bagel Shop Park Coffee Shop Gym / Fitness Center Peruvian Restaurant Women's Store
259 Remsen Village Caribbean Restaurant Fast Food Restaurant Fried Chicken Joint Construction & Landscaping Coffee Shop Sandwich Place Salad Place Donut Shop Café Fish Market
260 New Lots Pizza Place Fast Food Restaurant Grocery Store Furniture / Home Store Bus Station Breakfast Spot Chinese Restaurant Metro Station Park Bank
261 Paerdegat Basin Harbor / Marina Food Asian Restaurant Women's Store Financial or Legal Service Event Space Exhibit Factory Falafel Restaurant Farm
262 Mill Basin Chinese Restaurant Japanese Restaurant Pizza Place Bagel Shop Cosmetics Shop Bank Sushi Restaurant Pet Store Bakery Liquor Store
263 Jamaica Hills Pharmacy Donut Shop Fast Food Restaurant Fried Chicken Joint Indian Restaurant Chinese Restaurant Halal Restaurant Thai Restaurant Pet Store Coffee Shop
264 Utopia Deli / Bodega Spa Ice Cream Shop Donut Shop Pizza Place Playground South American Restaurant Bakery Automotive Shop History Museum
265 Pomonok Japanese Restaurant Playground Bus Station Supermarket Food & Drink Shop Bowling Alley Park Scenic Lookout Pizza Place Bar
266 Astoria Heights Italian Restaurant Plaza Bus Station Supermarket Bowling Alley Chinese Restaurant Shopping Mall Bakery Hostel Pizza Place
267 Claremont Village Chinese Restaurant Grocery Store Pizza Place Bus Station Deli / Bodega Discount Store Caribbean Restaurant Liquor Store Bakery Gym
268 Concourse Village Fast Food Restaurant Sandwich Place Sporting Goods Shop Mexican Restaurant Bus Station Deli / Bodega Pharmacy Southern / Soul Food Restaurant Supermarket Supplement Shop
269 Mount Eden Supermarket Spanish Restaurant Pharmacy Pizza Place Deli / Bodega Fried Chicken Joint Fast Food Restaurant Chinese Restaurant Clothing Store Bar
270 Mount Hope Grocery Store Sandwich Place Asian Restaurant Donut Shop Metro Station Deli / Bodega Supermarket Ice Cream Shop Spanish Restaurant Video Game Store
271 Sutton Place Gym / Fitness Center Italian Restaurant Furniture / Home Store Coffee Shop Indian Restaurant American Restaurant Gym Beer Garden Cupcake Shop Bakery
272 Hunters Point Italian Restaurant Café Japanese Restaurant Brewery Thai Restaurant Deli / Bodega Gym / Fitness Center Burger Joint Coffee Shop American Restaurant
273 Turtle Bay Italian Restaurant Steakhouse Sushi Restaurant Coffee Shop Wine Bar Japanese Restaurant Indian Restaurant Ramen Restaurant Park French Restaurant
274 Tudor City Café Mexican Restaurant Park Pizza Place Greek Restaurant Deli / Bodega Restaurant Thai Restaurant Gym Diner
275 Stuyvesant Town Boat or Ferry Park Bar Baseball Field Cocktail Bar Harbor / Marina Gym / Fitness Center Playground German Restaurant Coffee Shop
276 Flatiron Japanese Restaurant Spa American Restaurant Café Clothing Store Gym / Fitness Center New American Restaurant Yoga Studio Cycle Studio Salon / Barbershop
277 Sunnyside Gardens Bar Grocery Store Pizza Place Korean Restaurant American Restaurant Coffee Shop Bank Turkish Restaurant Thai Restaurant Pharmacy
278 Blissville Deli / Bodega Donut Shop Hotel Rental Service Art Gallery Sporting Goods Shop Cafeteria Movie Theater Skating Rink Mattress Store
279 Fulton Ferry Park American Restaurant Scenic Lookout Bakery Playground Pizza Place Café Coffee Shop Ice Cream Shop Burger Joint
280 Vinegar Hill Food Truck Art Gallery Wine Shop Coffee Shop Café Music Venue Factory Scenic Lookout Bike Rental / Bike Share Bar
281 Weeksville Discount Store Café Grocery Store Liquor Store Donut Shop Lounge Plaza Gas Station Cocktail Bar Juice Bar
282 Broadway Junction Fried Chicken Joint Donut Shop Diner Gas Station Pizza Place Sandwich Place Caribbean Restaurant Discount Store Ice Cream Shop Bus Stop
283 Dumbo Coffee Shop Café Park Scenic Lookout Bakery Japanese Restaurant American Restaurant Art Gallery Bookstore Boxing Gym
284 Manor Heights Donut Shop Deli / Bodega American Restaurant Campground Liquor Store Food Sushi Restaurant Chinese Restaurant Pharmacy Filipino Restaurant
286 Sandy Ground Bus Stop Fish & Chips Shop Racetrack Greek Restaurant Art Gallery Market Playground Food Truck Intersection Exhibit
287 Egbertville Clothing Store Italian Restaurant Bagel Shop Cosmetics Shop Construction & Landscaping Financial or Legal Service Event Service Event Space Exhibit Factory
288 Roxbury Irish Pub Beach Deli / Bodega Trail Fast Food Restaurant Baseball Field Women's Store Financial or Legal Service Event Space Exhibit
289 Homecrest Bank Donut Shop Sandwich Place Grocery Store Chinese Restaurant Pizza Place Mexican Restaurant Fast Food Restaurant Sushi Restaurant Tattoo Parlor
290 Middle Village Japanese Restaurant Diner Martial Arts Dojo Bank Bakery Sandwich Place South American Restaurant Pizza Place Playground Discount Store
291 Prince's Bay Pizza Place Italian Restaurant Sushi Restaurant Bank Pet Store Bagel Shop Pharmacy Ice Cream Shop Tanning Salon Food Truck
292 Lighthouse Hill Italian Restaurant Trail Spa Café Art Museum Financial or Legal Service Event Space Exhibit Factory Falafel Restaurant
293 Richmond Valley Bank Fast Food Restaurant Sandwich Place Food Mexican Restaurant Coffee Shop Train Station Bubble Tea Shop Deli / Bodega Convenience Store
294 Malba Rest Area Tennis Court Women's Store Financial or Legal Service Event Service Event Space Exhibit Factory Falafel Restaurant Farm
295 Highland Park Spanish Restaurant Pizza Place Liquor Store Garden Latin American Restaurant Park Fried Chicken Joint Gym / Fitness Center Cosmetics Shop Food
296 Madison Bagel Shop Pilates Studio Italian Restaurant Pizza Place Deli / Bodega Bus Station Restaurant Candy Store Dessert Shop Hobby Shop
297 Bronxdale Italian Restaurant Spanish Restaurant Chinese Restaurant Bank Paper / Office Supplies Store Gym Mexican Restaurant Eastern European Restaurant Pizza Place Performing Arts Venue
298 Allerton Pizza Place Supermarket Chinese Restaurant Deli / Bodega Bus Station Spanish Restaurant Breakfast Spot Martial Arts Dojo Fast Food Restaurant Pharmacy
299 Kingsbridge Heights Pizza Place Coffee Shop Deli / Bodega Food Truck Fried Chicken Joint Mexican Restaurant Park High School Sandwich Place Baseball Field
300 Erasmus Caribbean Restaurant Yoga Studio Furniture / Home Store Grocery Store Chinese Restaurant Mobile Phone Shop Pharmacy Bank Health Food Store School
301 Hudson Yards American Restaurant Hotel Italian Restaurant Café Gym / Fitness Center Thai Restaurant Dog Run Boat or Ferry Park Spanish Restaurant
302 Hammels Beach Southern / Soul Food Restaurant Shoe Store Gym / Fitness Center Dog Run Fast Food Restaurant Café Diner Bus Stop Bus Station
304 Queensbridge Hotel Baseball Field Hotel Bar Performing Arts Venue Basketball Court Beer Garden Park Scenic Lookout Sandwich Place Roof Deck
In [ ]:
#### Cluster 3
In [99]:
newyork_merged.loc[newyork_merged['Cluster Labels'] == 2, newyork_merged.columns[[1] + list(range(5, newyork_merged.shape[1]))]]
Out[99]:
Neighborhood 1st Most Common Venue 2nd Most Common Venue 3rd Most Common Venue 4th Most Common Venue 5th Most Common Venue 6th Most Common Venue 7th Most Common Venue 8th Most Common Venue 9th Most Common Venue 10th Most Common Venue
179 Neponsit Beach Women's Store Fish & Chips Shop Event Space Exhibit Factory Falafel Restaurant Farm Farmers Market Fast Food Restaurant
In [ ]:
#### Cluster 4
In [100]:
newyork_merged.loc[newyork_merged['Cluster Labels'] == 3, newyork_merged.columns[[1] + list(range(5, newyork_merged.shape[1]))]]
Out[100]:
Neighborhood 1st Most Common Venue 2nd Most Common Venue 3rd Most Common Venue 4th Most Common Venue 5th Most Common Venue 6th Most Common Venue 7th Most Common Venue 8th Most Common Venue 9th Most Common Venue 10th Most Common Venue
27 Clason Point Park Bus Stop Moving Target Pool Grocery Store Boat or Ferry South American Restaurant Women's Store Financial or Legal Service Factory
76 Mill Island Pool Financial or Legal Service Ethiopian Restaurant Event Service Event Space Exhibit Factory Falafel Restaurant Farm Farmers Market
192 Somerville Park Women's Store English Restaurant Event Service Event Space Exhibit Factory Falafel Restaurant Farm Farmers Market
203 Todt Hill Park Women's Store English Restaurant Event Service Event Space Exhibit Factory Falafel Restaurant Farm Farmers Market
303 Bayswater Park Playground Women's Store Filipino Restaurant Event Service Event Space Exhibit Factory Falafel Restaurant Farm
In [ ]:
#### Cluster 5
In [101]:
newyork_merged.loc[newyork_merged['Cluster Labels'] == 4, newyork_merged.columns[[1] + list(range(5, newyork_merged.shape[1]))]]
Out[101]:
Neighborhood 1st Most Common Venue 2nd Most Common Venue 3rd Most Common Venue 4th Most Common Venue 5th Most Common Venue 6th Most Common Venue 7th Most Common Venue 8th Most Common Venue 9th Most Common Venue 10th Most Common Venue
207 Port Ivory Bar Fish & Chips Shop Event Service Event Space Exhibit Factory Falafel Restaurant Farm Farmers Market Fast Food Restaurant
212 Oakwood Bar Playground Bus Station Lawyer Event Service Event Space Exhibit Factory Falafel Restaurant Farm